Jump to content

Clandestinex337

Members
  • Posts

    48
  • Joined

  • Last visited

    Never

Everything posted by Clandestinex337

  1. Tank you for your help, I solved the problem
  2. Ok, I was able to retrieve the id variable in the href. Now to get the switch to work, how I currently have it setup you have to go to posts.php?action=delete but my link to delete is going to posts.php?action=delete&id=$id so I am not to sure how to get it to ignore the &id=$id and just if its at action=delete it will run the switch.
  3. Thank you for the reply, and yes it does make sense.. But for some reason I can't think of a way to link the id between all the pages. I know how to retrieve the id. In the find_posts function I retrieve the id parameter and echo it out, I just don't know how to link it to the delete function to make it work properly. Thanks again.
  4. Not sure how to go about making it so that I can delete and edit a post.. So I am stumped on how to make it to delete and edit post. The key factor for getting the information is the id field. And I am able to get it and display it, but how can I get it to work between all my functions? This is what I have so far. <?php include 'test.php'; function connection() { $connection = @mysql_connect('localhost','root','') or die('could not connect to mysql'); $select_db = @mysql_select_db('tutorials') or die('could not connect to database'); } function delete_post($id) { connection(); $query = "DELETE FROM `posts` WHERE `id` = '$id'"; $result = mysql_query($query); } function find_posts() { connection(); $query = 'SELECT `posts`.`title`, `posts`.`body`, `posts`.`id`, `users`.`username` FROM `posts`, `users` WHERE `posts`.`user_id` = `users`.`id`'; $result = mysql_query($query); while ($row = mysql_fetch_array($result)) { $id = $row['id']; echo '<b>' . $row['title'] . '</b>' .'<a href=/practice/model/posts.php?action=delete>[delete]</a> <a href=/practice/model/posts.php?action=edit>[edit]</a>' . '<br/>'; echo $row['body'] . '<br/>'; echo $row['username'] . '<p>'; } } function find_post($id) { connection(); $query = "SELECT `posts`.`title`, `posts`.`body`, `posts`.`id`, `users`.`username` FROM `posts`, `users` WHERE `posts`.`user_id` = `users`.`id` AND `posts`.`id` = '$id'"; $result = mysql_query($query); $row = mysql_fetch_array($result); echo '<b>' . $row['title'] . '</b>' . '<br/>'; echo $row['body'] . '<br/>'; echo $row['username'] . '<p>'; } function create_post() { connection(); $title = $_POST['title']; $body = $_POST['body']; $query = "INSERT INTO `posts` SET `title` = '$title', `body` = '$body', `created_at` = NOW(), `user_id` = 53"; $result = mysql_query($query); if(!$result) { echo mysql_error(); } } delete_post(7); find_posts(); ?> <?php $action = $_GET['action']; switch ($action) { case 'create': echo 'created' . '<br/>'; create_post(); break; case 'delete': echo 'deleted' . '<br/>'; delete_post($id); break; } ?> <form action="/practice/model/posts.php?action=create" method="POST"> <input type="text" col="40" name="title" /><br/> <textarea cols="30" rows="5" name="body"> </textarea><br/> <input type="submit" name="submit" /> </form> So yea, I am not sure how to get the 'id' parameters linked between everything that needs it. Sorry for the vague description, but its kind of hard to put it into words. If you need a more detailed description please let me know and I will try to. Pretty much want to be able to delete and edit my posts. Thank you!
  5. the meta works beautifully, thanks a lot for your help btherl!
  6. Thanks that worked! Instead of making a new post, I have a quick question. When I have my code delete one of the post, it redirects to the delete.php file which runs the query to delete the post, but I had to make a link that you click and it goes to the index.php file. Is there a way that when it goes to the delete.php file it redirects to the index.php file automatically? I thought I saw something like this before, I think it was called header? Thanks a lot.
  7. I made theses changes, but it updates the query with empty values.
  8. I would, but if I change the variables in the form, wont that conflict with the first if statement and not show the items I want edited in the form? Sorry for my ignorance, but I do not understand what you are trying to point at. Thanks
  9. Hello, I am trying to pick up php again and just exercising my skills. So I have it so that it fills my form with the values of what I want to edit, and when I click the edit button, it doesn't edit any of the information. When I echo out $result, I get a MYSQL query string that has the same values as the table, so its not getting the new values that are edited. <?php @mysql_connect('localhost', 'root', '') or die("Could not connect to Mysql Server. " . mysql_error()); @mysql_select_db('tutorials') or die("Could not connect to Database. " . mysql_error()); if(isset($_GET['edit'])) { $id = $_GET['edit']; $query = "SELECT `username`, `password` FROM `users` WHERE `id` = '$id'"; $result = mysql_query($query); $row = mysql_fetch_array($result); $name = $row['username']; $password = $row['password']; } if(isset($_POST['edit'])) { $id = $_GET['edit']; $query = "UPDATE `users` SET `username` = '$name', `password` = '$password' WHERE `id` = '$id'"; $result = mysql_query($query); echo $query; if(!$result) { echo mysql_error(); }else{ echo 'updated post'; } } ?> <form method="POST" action="" > <input type="text" name="name" value="<?php echo $name; ?>" /> First name <br /> <input type="text" name="password" value="<?php echo $password; ?>" /> Last name <br /> <input type="submit" name="edit" value="edit" /> </form> I believe it has something to do with the values of $name and $password in the form conflicting with the first if isset and the second if isset. Thanks for any help possible
  10. Thanks for the help, the script isn't the most user friendly. I've found out it will only work with http://FEEDURL but most feed links are feed://FEEDURL Thank for all the help. I appreciate it.
  11. that works in posting into and showing the text file, but it doesn't show the RSS Feed if its a feed url.
  12. Yes I want to store multiple RSS urls in a txt file and be able to display the RSS feed from the txt file and be able to delete the urls from the text file in any order.
  13. anyone? I would really like to know how to do this Thanks
  14. ok so I am working on an RSS feed, but I have some questions on some things that I am not sure how to go about it. right now I have function getRSS($rss_url) { $content = file_get_contents($rss_url); $xml = new SimpleXmlElement($content); foreach($xml->channel->item as $entry) { echo "<a href='$entry->link' title='$entry->title'>" . $entry->title . "</a></br>"; } } This displays the RSS from a URL, but I want to be able use a form to post the link which will go to a text file. This is the function I have for making the links go to the text file function createRSS() { $filename = "rss.txt"; $text = $_POST['rssURL']; $fp = fopen($filename, "a+"); if (!$fp) { echo ('File was not written'); } else { fwrite ($fp, $text."\n"); fclose ($fp); echo 'File written </br>'; } } With this function, it creates the text file and inputs w/e I put in the text field, but I want to be able to retrieve each link separately to be able to display the RSS, and I want to be able to delete an RSS if I want to. Could anyone point me into the right direction? 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.