Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
20% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #10.5K
Ranked #2K
~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

16 Posted Topics

Member Avatar for Nollyvenon

function getIp(){ if (!empty($_SERVER['HTTP_CLIENT_IP'])) { $ip = $_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; } else{ $ip = $_SERVER['REMOTE_ADDR'] ? $_SERVER['REMOTE_ADDR'] : ""; } return $ip; }

Member Avatar for matrixdevuk
0
269
Member Avatar for Kalaivani Nair

Hi, I gives a look to github and found this in the "Script Folder Structure" section: - Script Folder Strucutre bower_components/: This is the source folder where all Foundation scripts are located. foundation update will check and update scripts in this folder js/custom: This is where you put all your …

Member Avatar for Taywin
0
241
Member Avatar for jorgeftz

I don't really understand what do you mean by saying (ME once), but if you want to display results in html table in this manner <? $output = ""; $sql = ("SELECT DISTINCT(t1.MIN) AS M, T2.NOTA FROM T1 RIGHT JOIN T2 ON T1.MIN=T2.MIN WHERE (T1.MIN=$list) "); $stmt = oci_parse($conn, $sql); …

Member Avatar for jorgeftz
0
124
Member Avatar for jKidz

if you want to embed a Google map with a marker placed on a specific place on the map, you can use geographic coordinates (latitude and longitude) of the exact place you are referring to (**change new google.maps.LatLng with your coordinates**) <!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> <meta …

Member Avatar for Masterblank
0
306
Member Avatar for Junior999

Hi, to help you solving the problem I need to see the mysql query. can you post the full php?

Member Avatar for Masterblank
0
432
Member Avatar for Member #321605

at first glance i noticed that there are some thing to revise. at line 11 you have the "renderForm" function that includes three values function renderForm($text = '', $yearrange ='', $fid = '') at line 118 you call the function above by passing a strange NULL value renderForm($text, $yearrange, NULL, …

Member Avatar for Masterblank
0
251
Member Avatar for Rizi004

maybe getPageInfo function could help you? ---------------------------------- FB.Canvas.getPageInfo Returns a Javascript object containing information about your app's canvas page. You need to provide a callback with the API, where we fetch the new value and return it. As a Canvas app runs within an iframe it does not have access …

Member Avatar for Masterblank
0
233
Member Avatar for com_man

jou can use js to set/get/destroy cookies here is an example <head> <script> /// js function to set a cookie /// function create_cookie(name, value, days, domain) { var domain_string = domain ? ("; domain=" + domain) : '' ; document.cookie = name + "=" + encodeURIComponent( value ) + "; …

Member Avatar for Masterblank
0
163
Member Avatar for azapovjednik

I made some changes in your code. you must enclose all the input in only one <form> element. I think this will work <div class="container"> <div class="row"> <form class="form-horizontal"> <!-- START FORM --> <div id="pretraga_div" class="col-sm-3 col-md-3 pull-right"> <div class="input-group glyph"> <input type="text" class="form-control" placeholder="Search" name="srch-term" id="srch-term"> <div class="input-group-btn"> <button …

Member Avatar for Masterblank
0
504
Member Avatar for Yimeng

some time ago I had the same problem. I solve it by following some instructions included in [this tutorial](http://karanbalkar.com/2013/11/tutorial-63-implement-reverse-geocoding-in-android/)

Member Avatar for Masterblank
0
158
Member Avatar for vivek.goyaljpr

Hi Vivek, What do you think [about this](http://www.ganjbasoda.net/converter/chanakya-to-unicode-to-chanakya.html)?

Member Avatar for Masterblank
0
79
Member Avatar for accra

The best approach to work with dynamic google maps is by using json or xml to populate the map with markers. Both solutions are suitable for your needs. Google publish a [great tutorial](https://developers.google.com/maps/articles/phpsqlsearch_v3) with examples and code snippet that will help you a lot Plus, if you wish to know …

Member Avatar for Masterblank
0
2K
Member Avatar for Alicia_5

Hi Alicia, the only wrong thing i see in your snippet is the lack of two commas // Add the stylesheet to the header wp_enqueue_style( 'jquizzystyles', /// here WP_PLUGIN_URL.'/jquizzy/source/jquery.jquizzy.css', /// and here false, all); hope this solve your problem

Member Avatar for Masterblank
0
99
Member Avatar for ChungHao

Due to browser security restrictions, most Ajax requests are subject to the [same origin policy](http://en.wikipedia.org/wiki/Same_origin_policy); the request can not successfully retrieve data from a different domain, subdomain, port, or protocol. I suggest you to give a glance [here](http://stackoverflow.com/questions/15005500/loading-cross-domain-html-page-with-jquery-ajax/17299796#17299796) to find the solution that better fit your needs hope this helps …

Member Avatar for Masterblank
0
208
Member Avatar for owenransen

- open FF - In the URL bar, type about:config - Type geo.enabled - Double click on the geo.enabled preference - Location-Aware Browsing is now disabled

Member Avatar for Masterblank
0
226
Member Avatar for Violet_82

Hi Violet, some time ago I worked on a similar project. You can see an example online [here](http://goldwebonline.info/programs/phpGmap/) and if it is what you are looking for, you can download the package, including all the files and setup instructions, directly from the demo hope this helps you

Member Avatar for Masterblank
0
351

The End.