kill4 Posted March 5, 2006 Share Posted March 5, 2006 is there a way to add a add a varible to a post varible something like this$_POST['imageurl_$counter'];when i do that it dont read that value thats in $counter any one no how i can get it to read that value? Link to comment https://forums.phpfreaks.com/topic/4124-_post-question/ Share on other sites More sharing options...
Hooker Posted March 5, 2006 Share Posted March 5, 2006 try something like this:[code]$url = $_POST['imageurl']."_"."$counter";[/code]obviously then you'd use $url instead of $_POST['imageurl'] to call the information Link to comment https://forums.phpfreaks.com/topic/4124-_post-question/#findComment-14330 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.