Jump to content

Help with simple php script


Yojance

Recommended Posts

Hello, I have started learning php a week ago and I'm trying to put something together and I was wondering how can I extract every single row from this script and show it.

[code]<?php
$db = "links";
$dbcon = mysql_connect("localhost", "user", "pass");
    mysql_select_db($db, $dbcon);
$url =             $_POST['url'];
$title =         $_POST['title'];

$addquery = "INSERT INTO links(title, url)
                    VALUES('$title', '$url') ";
if(isset($_POST['submit'])) {
    mysql_query($addquery);
}
?>[/code]

Thanks for reading and hope someone can help me.
Link to comment
Share on other sites

Thanks for your replay, I copy and pasted that into my editor and I played with the last line to make it look like a regular link using <a href="blahblah">title</a> .
The problem is that the title is correct, but for the url, it goes straight to the same page Im looking at the links.

Here is the code I used:
[code]echo "<a href=\"".$info['url']."\">".$info['title']."</a><br/>";
[/code]

So.. no matter how many links I have on that page, it's linking them all to the same page, called add_links.php
Any idea why this is happening?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.