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? Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.