- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
16 Posted Topics
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; }
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 …
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); …
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 …
Hi, to help you solving the problem I need to see the mysql query. can you post the full php?
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, …
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 …
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 ) + "; …
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 …
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/)
Hi Vivek, What do you think [about this](http://www.ganjbasoda.net/converter/chanakya-to-unicode-to-chanakya.html)?
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 …
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
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 …
- 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
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
The End.