Jump to content

Manhag

Members
  • Posts

    27
  • Joined

  • Last visited

Manhag's Achievements

Member

Member (2/5)

1

Reputation

  1. i want to update mysql database using php "i think it is related to that forum" chained selection is in javascript ...true it is like html code>>>>> it is a part of code i know how to store selection form values but i failed to do it here can u help me pleasse:)
  2. hello i found that script chained selection script for countries states cities http://www.sitepoint.com/forums/showthread.php?350291-Country-State-City-Dropdown-list demo http://www.manhag.net/salaty/missing-cities/ how can i store selection value to database ?
  3. thanks already the user is registered in the site how can i show the selection value ??
  4. i stored the selection to database but i want to show the selection for that user in the next time he enters the site
  5. i want to make a nested select-boxes i tried this tutorial and it works www.blueicestudios.com/chained-select-boxes-using-php-mysql-ajax/ i want to store the result to database so i the user enter the site again...he will find the selection he did is it possible ? thanks
  6. thanks i want to open multiple url in one file which make a certain operation "a facebook app" but this operation takes much resources "memory & processor"
  7. hello i want to remotely open url using php file in cronjob which one uses less memory ?? file_get_contents iframe PHP curl: CURLOPT_URL ?? or it doesn't matter ?
  8. hello i want to echo the date"day" of another timezone i tried this but no change in day value $day1 = date("Y-m-d H:i:s"); $day = new DateTime($day1, new DateTimeZone('Pacific/Fiji')); echo "asd".$day->format('j')."asd";
  9. line between as i told u i can make a line between 2 fixed points but i can't make a line between center and a fixed point here is the code <!DOCTYPE html> <html> <head> <script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyCwID2UsBJvwVKEMx_U53brmIC8EOLsBFo&sensor=false"> </script> <script> var bounds = new google.maps.LatLngBounds(); var length = markers.length; for (var i = 0; i < length; i++) { bounds.extend(new google.maps.LatLng(markers[i].lat, markers[i].lng)); map.fitBounds(bounds); } var x=new google.maps.LatLng(52.395715,4.888916); var stavanger=new google.maps.LatLng(markers[i].lat, markers[i].lng); var london=new google.maps.LatLng(51.508742,-0.120850); function initialize() { var mapProp = { center:x, zoom:4, mapTypeId:google.maps.MapTypeId.ROADMAP }; var map=new google.maps.Map(document.getElementById("googleMap"),mapProp); var myTrip=[stavanger,london]; var flightPath=new google.maps.Polyline({ path:myTrip, strokeColor:"#0000FF", strokeOpacity:0.9, strokeWeight:2 }); flightPath.setMap(map); } google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id="googleMap" style="width:500px;height:380px;"></div> </body> </html>
  10. i already searched for it i can make a line bet 2 points but i can't make a line bet center and a fixed point
  11. hello i found this site using google maps api http://apps.qiblalocator.com/ext/embed/?address=usa is there any suggestion
  12. hello to store a list in a column of a database table......is it a good idea ?? i want to export that xml file to database http://www.islamicfinder.org/prayer_service.php?country=tunisia&city=qabis&state=&zipcode=&latitude=33.8833&longitude=10.1167&timezone=1.00&HanfiShafi=1&pmethod=1&fajrTwilight1=&fajrTwilight2=&ishaTwilight=0&ishaInterval=0&dhuhrInterval=1&maghribInterval=1&dayLight=0&simpleFormat=xml&monthly=1&month= any help please ?? last question : reading data from xml is faster or from database ? thanks
  13. i goggled it and found this answer it fixed my problem may help any one $string = preg_replace('/%u([0-9A-F]+)/', '$1;',$string); $string =html_entity_decode($string, ENT_COMPAT, 'UTF-8');
  14. when i click submit a message appears that it is done + data sent %u 06 45 %u 06 35 %u 06 31 remove space bet characters
  15. output before storing in database
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.