Is there a web builder I can use for my flash portal? It is made from php, I have the main php code so the flash will be added to the portal. And all the technical stuff. But what I need to do now is to make a layout to make it look good so I can add back ground and add pics and move the flash submitted list to where I like best... but for all this I will need a web builder. But when I insert the php code into one, it don’t display right in desplay mod as it dose on the web. Here is the flash portal so you may try.
portal.php
portal.php
Code:
<html> <head> <title>Flash Portal</title> </head> <body> <?php require("dbconnect.php"); echo("<font size='4'><strong>15 Most Recent</strong></font>"); //displays most recent flash using a while loop $query = "SELECT * FROM flash ORDER BY flashid DESC LIMIT 15"; $result = mysql_query($query); $i = 0; while ($row = mysql_fetch_array($result)) { //increases printed number for flash by one $i++; //declare varibles $score = stripslashes($row['score']); $title = $row['title']; $flashid = stripslashes($row['flashid']); //print flash submission echo($i); echo(" - "); echo("<a href='view.php?id="); echo($flashid); echo(">$title</a>"); //tells if submission is excellent (score higher than 7.0), okay (score between 3.0 and 7.0), or bad (score lower than 3.0) if ($score <= 3.0) { echo("(Bad!)"); } else if ($score > 3.0 && $score <= 7.0) { echo("(Okay)"); } else if ($score > 7.0) { echo("(Excellent!)"); } echo("<br>"); } echo("<font size='4'><strong>15 Most Viewed</strong></font>"); //displays 15 most viewed flash $query = "SELECT * FROM flash ORDER BY views DESC LIMIT 15"; $result = mysql_query($query); $i = 0; while ($row = mysql_fetch_array($result)) { //increases printed number for flash by one $i++; //declare varibles $score = stripslashes($row['score']); $title = $row['title']; $flashid = stripslashes($row['flashid']); //print flash submission echo($i); echo(" - "); echo("<a href='view.php?id="); echo($flashid); echo(">$title</a>"); echo("<br>"); } echo("<font size='4'><strong>Top 15</strong></font>"); //displays 15 top flash (ordered by highest score) $query = "SELECT * FROM flash ORDER BY score DESC LIMIT 15"; $result = mysql_query($query); $i = 0; while ($row = mysql_fetch_array($result)) { //increases printed number for flash by one $i++; //declare varibles $score = stripslashes($row['score']); $title = $row['title']; $flashid = stripslashes($row['flashid']); //print flash submission echo($i); echo(" - "); echo("<a href='view.php?id="); echo($flashid); echo(">$title</a>"); echo("<br>"); } //finish up page by adding end tags ?> </body> </html>
Comment