thedigicraft / Atom.CMS

Atom.CMS
56 stars 52 forks source link

Last attempt to upload the link #203

Closed bidjan closed 7 years ago

bidjan commented 7 years ago

Hi creptor:

below is the url to blog.php. As I explained to you before everytime I click on title on the left the form that shows up on the right is always the last record.

I am hoping I am getting this done right!!

Bob Ghodsi http://pastebin.com/xyvKb654

creptor commented 7 years ago

jajajajaj it was soo simple 😋, well now you know how to use GitHub 👍

To fix your code just look at line 56 and replace this ->

$q="SELECT * FROM blog  ORDER BY date DESC";

With this ->

$q="SELECT * FROM blog WHERE id = $_GET[id]";

This actually uses the variable you have in your url

creptor commented 7 years ago

If you have another issue feel free to ask 😋

bidjan commented 7 years ago

Hi Creptor: Thank you for correcting my code. Big relief! You live and learn!

You are right, It is so simple when you know what you are doing.

Bob Ghodsi