Jump to content

oledaveoh

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

oledaveoh's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, I have created two tables, one called 'posts' and the other 'selected_pic'. The idea is to have a table of posts that gets stored with an ID that references the image in the 'selected_pic' table. From what i have gathered, using Foreign keys is probably the best way y do this? If theres something easier, then please let me know. However when i try to make a post on the web page "Cannot add or update a child row: a foreign key constraint fails " comes up and thus fails to insert into the table. This is what i have set up so far.. TABLE : selected-pic 'pic_id' - int(11) - NOT_NULL - auto_increment 'username' - varchar(32) - NOT_NULL 'imagelocationpic' - varchar(100) - NOT_NULL Primary Key - 'pic_id' Table : posts 'posts_id' - int(11) - NOT_NULL - auto_increment 'pic_id' - int(11) - NOT_NULL 'username' - varchar(11) - NOT_NULL 'text' - varchar(100) - NOT_NULL 'date' - date - NOT_NULL 'time' - int(11) - NOT_NULL 'up' - int(11) - NOT_NULL 'down' - int(11) - NOT_NULL 'profile_pic' - varchar(100) - NOT_NULL Primary Key - 'posts_id' Index key - 'pic_id' *Here i have set the 'pic_id' from the 'posts' table to reference the 'pic_id' in the 'selected_pic' table. PHP & Mysql code on page. <?php $id=$_SESSION['username']; $time=time(); $date=date("Y-m-d"); if($_POST['post']) { //get the data $text=$_POST['text']; $image=$_POST['profile_pic']; //check for existance if ($text) { //insert data include ("connect2.php"); $time=time(); $insert=mysql_query("INSERT INTO posts VALUES('', '', '$id','$text','$date', '$time','','','$image')") or die(mysql_error()); echo ""; } else echo "Please fill out the text field"; } echo" <br>"; ?> Thanks in advance! Dave
  2. Thanks for the reply,but i managed to sort it out. Sorry about my lack of clarity on the problem, it was a mysql command withen a php file and nothing else, which i needed to run at a particular time, daily, to display different information.
  3. Hello, I have a php file which i want to run daily which grabs one row from a table in my database and inserts into another. I have been researching how to run cron jobs with php files and so far my efforts have failed Heres what i enter into the command line: lynx -dump http://www.mydomain.com/cron_script.php i have obviously replaced mydomain with my actual websites domain, but it do not seem to have an effect. Ant help or suggestions would be great. Thanks!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.