ahmed17 Posted October 9, 2006 Share Posted October 9, 2006 hi guys,i am try to make news script display news in my database aso i make script but i need some help...i want data display flow in one row using marquee and when i press on the title as a link display the subject in new window[code]<!doctype html public "-//W3C//DTD HTML 4.0 //EN"><html><head> <title>Title here!</title></head><body><?php/*=========================================================CREATE TABLE `news` (`id` TINYINT( 10 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,`title` VARCHAR( 50 ) NOT NULL ,`subject` VARCHAR( 51 ) NOT NULL) ENGINE = innodb;=========================================================*/$host="localhost";$user="root";$pass="";$database="news";$table="news";$link = mysql_connect('localhost', "$user", "$pass")or print"failed connection"; mysql_select_db($database,$link)or print "not exists"; $_sql="INSERT INTO $table(title,subject)VALUES('my test script...news','this is my topic')";$result=mysql_query($_sql,$link);if($result){ echo"sucess entery data";}else{ echo"failed entery data";}$query=("select * from $table");$result= mysql_db_query($database,$query,$link);while($row=mysql_fetch_array($result)){ echo"<br>"; $move=$row['title']; echo "<marquee>$move</marquee>"; echo"<br>"; echo $row['subject']; echo"<br>"; }?></body></html>[/code] Link to comment https://forums.phpfreaks.com/topic/23468-news-script-need-support/ Share on other sites More sharing options...
amalosoul Posted October 9, 2006 Share Posted October 9, 2006 Well depends on what you understand by a new window...if you want a special window than you have to use javascript (simplier than java)... Link to comment https://forums.phpfreaks.com/topic/23468-news-script-need-support/#findComment-106493 Share on other sites More sharing options...
ahmed17 Posted October 9, 2006 Author Share Posted October 9, 2006 thanks amalosoul :) i know javascript do that but how i use it with this script to make wat i do ? ? Link to comment https://forums.phpfreaks.com/topic/23468-news-script-need-support/#findComment-106513 Share on other sites More sharing options...
ahmed17 Posted October 10, 2006 Author Share Posted October 10, 2006 what's the new to do ? Link to comment https://forums.phpfreaks.com/topic/23468-news-script-need-support/#findComment-106798 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.