Sorry there was a little typo in my last post. I meant to write $id = $row+1 not $row=1 $id is the primary key $row is the index that I used to loop through and echo the table in a previous page The relation ship as mentioned above is: $id = $row+1 In essence my table looks like this id | topic | li...
Basically what I am trying to achieve is to pass the variables $topic, $location, $links from an HTML form to usr_update_link.php and use those values to update $row where $id(primary key) is $row=1.
Hi, I need some help with this. When I use the UPDATE function for the targeted key id nothing changes in my MySQL database. I printed all the variables and they all contain the correct values. I did not get any errors and the mysql_query for the UPDATE function returned true. As you can see in the ...
Oops, It was just a typo. I didn't have my original script at work, so I had to retype to post this in this forum. So yes php: $ci->cropTo Dimensions($GET_['sx']. $GET_['sy'], $GET_['ex'], $GET_['ey']); should be... php: $ci->cropTo Dimensions($_GET['sx']. $_GET['sy'], $_GET['ex'], $_GET['ey']); Unf...
php: $ci->cropTo Dimensions($GET_['sx']. $GET_['sy'], $GET_['ex'], $GET_['ey']); You have a space in your method call. Shouldn't it be cropToDimensions? That function actually works. I got the class and script from Andrew Collington http://www.phpclasses.org. Its a great little script and brought m...
php: $ci->cropTo Dimensions($GET_['sx']. $GET_['sy'], $GET_['ex'], $GET_['ey']); You have a space in your method call. Shouldn't it be cropToDimensions? That function actually works. I got the class and script from Andrew Collington http://www.phpclasses.org. Its a great little script and brought m...
Thanks suni, Sorry for using the CODE instead of the PHP tag. I visit the w3 websites often to look for tutorials, but I actually know how to save an uploaded file. This time I couldn't find any help or code samples for this specific problem. Maybe if I provide more code you can understand better. u...
feyd | Please use , and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] Hi guys, ...
Hi guys, I have an upload form upload_form.html with a browse button and a field for the image name. The image is retrieved and saved with upload.php which calls test.cropinterface.php so the user can crop and save the uploaded image. However, when I pass the image variable from upload.php to test.c...