09-30-2009, 05:33 PM
[eluser]boony[/eluser]
Hi All,
Sorry if it looks like I'm becoming a serial pest re this problem but I really need to solve a problem and hope that the wider community may be able to help (again :red: ).
In a previous post I mentioned that I'm trying to change the following JavaScript
to something that my controller can handle. The phpsqlinfo_addrow.php include in the original then specifies a number of $_GET statements to read the uri segments.
Many thanks to eoinmcg for some help here and suggesting that I use uri library to pass the uri segments. I tried the following (given that the js is in the head of the view).
and after checking with Firebug get the following error..frame is not defined
and this is what is being read..
So, I think I've narrowed down the problem to passing the url to the controller. Obviously, my solution is not working but I can't resolve the correct syntax!
Therefore, if anyone can suggest the correct way to set up the url I would be forever (well probably not forever but at least for a day or so :cheese: ) grateful...
Hi All,
Sorry if it looks like I'm becoming a serial pest re this problem but I really need to solve a problem and hope that the wider community may be able to help (again :red: ).
In a previous post I mentioned that I'm trying to change the following JavaScript
Code:
var url = "phpsqlinfo_addrow.php?name=" + name + "⪫=" + latlng.lat() + "&lng;=" + latlng.lng();
to something that my controller can handle. The phpsqlinfo_addrow.php include in the original then specifies a number of $_GET statements to read the uri segments.
Many thanks to eoinmcg for some help here and suggesting that I use uri library to pass the uri segments. I tried the following (given that the js is in the head of the view).
Code:
var url = "<?=site_url('mapapp/test_form'); ?>/fname/" + fname + "/lat/"
+ latlng.lat() + "/lng/" + latlng.lng();
and after checking with Firebug get the following error..frame is not defined
and this is what is being read..
Code:
var url = "http://www.stanbordeaux.com/bws/index.php/mapapp/test_form/fname/" + fname + "/lat/" + latlng.lat() + "/lng/" + latlng.lng();
So, I think I've narrowed down the problem to passing the url to the controller. Obviously, my solution is not working but I can't resolve the correct syntax!
Therefore, if anyone can suggest the correct way to set up the url I would be forever (well probably not forever but at least for a day or so :cheese: ) grateful...