Yojance Posted May 7, 2006 Share Posted May 7, 2006 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 https://forums.phpfreaks.com/topic/9224-help-with-simple-php-script/ Share on other sites More sharing options...
.josh Posted May 7, 2006 Share Posted May 7, 2006 [code]$sql = "select * from links";$results = mysql_query($sql) or die (mysql_error());while ($info = mysql_fetch_array($results)) { echo $info['title'] . " " . $info['url'] . "<br>";}[/code]will output:title urltitle urltitle url... Link to comment https://forums.phpfreaks.com/topic/9224-help-with-simple-php-script/#findComment-33983 Share on other sites More sharing options...
Yojance Posted May 7, 2006 Author Share Posted May 7, 2006 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.phpAny idea why this is happening? Link to comment https://forums.phpfreaks.com/topic/9224-help-with-simple-php-script/#findComment-34060 Share on other sites More sharing options...
Yojance Posted May 9, 2006 Author Share Posted May 9, 2006 I fixed it now, a friend of mine helped me. Thank you all anyways.Thank you Crayon for the help :) Link to comment https://forums.phpfreaks.com/topic/9224-help-with-simple-php-script/#findComment-34522 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.