![]() |
Url parameter - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Url parameter (/showthread.php?tid=35185) |
Url parameter - El Forum - 10-21-2010 [eluser]Thiago Leao[/eluser] I would like to know how to pass two parameters in a url. Example: Code: pagina.php?id=$id&name;=$name thanks friends! Url parameter - El Forum - 10-21-2010 [eluser]techgnome[/eluser] base_URL/controller/method/param1/param2.... that's the technique I've been using. -tg Url parameter - El Forum - 10-21-2010 [eluser]Thiago Leao[/eluser] Code: <a >id_pictures; ?>/<?php echo $item->id_products; ?>" onClick="return(deleta());" title="Apagar"> would that be? thanks Url parameter - El Forum - 10-21-2010 [eluser]Thiago Leao[/eluser] Well what I want is the following: I'm uploading the product with id 8. When I delete the image, I want to reload the page, returning the same id ... Only it's giving an error, it is not coming back to the id 8!! View upload_produto.php Code: <th width="28"> controller cad_produto.php Code: function upload($id_products){ Url parameter - El Forum - 10-21-2010 [eluser]Thiago Leao[/eluser] Any help? pls, thanks! |