
Ruko
Members-
Posts
57 -
Joined
-
Last visited
Never
Everything posted by Ruko
-
It works! Thanks man.
-
Oh, I almost forgot to mention, its on a structure, heres what it looks like: [attachment deleted by admin]
-
The main problem is that the play count is not adding in the sql row.
-
No, it doesn't cause errors. Heres where I define those $gid tags <?php require_once("mysql.php"); mysql_select_db("ruko_fp", $con); $thispage = $_SERVER["REQUEST_URI"]; $gid = strstr("$thispage","="); $gid = substr($gid, 1); $result = mysql_query("SELECT * FROM games WHERE gid='$gid'"); $num_rows = mysql_num_rows($result); if($num_rows == 0) { echo "Sorry! You reached a page or a game that doesn't exist. Please check your URL and try again. If the problem continues, then contact the webmaster or use the report us system."; } else { while($row = mysql_fetch_array($result)) { $flashlink = $row['gameswf']; $gid = $row['gid']; $gametitle = $row['gametitle']; $gamedescription = $row['gamedescription']; $gamerating = $row['gamerating']; $gamereview = $row['gamereview']; } }
-
I find that my play counter isn't working like its supposed to. It doesn't update the play counts in each row. Can someone give me a solution to fix? The snippet of the counter: //////////////////////////////// //////////////////////////////// ////////// Counter ///////////// //////////////////////////////// //////////////////////////////// $csql="SELECT * FROM games WHERE gid='$gid'"; $cresult=mysql_query($csql); $crows=mysql_fetch_array($cresult); $counter=$ccolumn['counter']; // if have no counter value set counter = 1 if(empty($counter)){ $counter=1; $csql1="UPDATE 'games' SET counter = '$counter' WHERE gid = '$gid'"; $cresult1=mysql_query($csql1); } // count more value $addcounter=$counter+1; $ccsql2="UPDATE 'games' SET counter = '$addcounter' WHERE gid = '$gid'"; $cresult2=mysql_query($csql2);
-
The whole code is this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Join the Development Team</title> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> <link rel="icon" type="image/png" href="images/favi.png" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js" type="text/javascript"></script> <script language="javascript"> var timeout = 500; var closetimer = 0; var ddmenuitem = 0; function jsddm_open() { jsddm_canceltimer(); jsddm_close(); ddmenuitem = $(this).find('ul').css('visibility', 'visible');} function jsddm_close() { if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');} function jsddm_timer() { closetimer = window.setTimeout(jsddm_close, timeout);} function jsddm_canceltimer() { if(closetimer) { window.clearTimeout(closetimer); closetimer = null;}} $(document).ready(function() { $('#jsddm > li').bind('mouseover', jsddm_open) $('#jsddm > li').bind('mouseout', jsddm_timer)}); document.onclick = jsddm_close; </script> </head> <? include('announcements.html') ?> <? include('logo.html') ?> <?php { session_start(); if(($_SESSION['security_code'] == $_POST['security_code']) && (!empty($_SESSION['security_code'])) ) { // Insert you code for processing the form here, e.g emailing the submission, entering it into a database. unset($_SESSION['security_code']); } else { // Insert your code for showing an error message here } if(isset($_POST['submit'])) if(empty($errors)) { //send the email $to = "[email protected]"; $subject="Developer Queuing"; $from = "[email protected]"; $ip = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : ''; $body = "A user $name wants to be a developer:\n". "Name: $name\n". "Email: $visitor_email \n". "Username: $username \n". "Why he/she wants to be a developer: $devwhy \n". "Coding Knowledge: $codingknow \n". "Comments: \n ". "$user_message\n". "IP: $ip\n"; $headers = "From: $from \r\n"; $headers .= "Reply-To: $visitor_email \r\n"; mail($to, $subject, $body,$headers); header('Location: thank-you.html'); } } ?> <div class="wrap"> <div id="bigcontent"> <div id="content"> <form method="POST" name="contact_form" action="JoinDevTeam.php"> <br /> <label for="name">Name: </label> <br /> <input type="text" name="name" value="<?php echo htmlentities($name) ?>"> <br /> <label for="email">Email: </label> <br /> <input type="text" name="email" value="<?php echo htmlentities($visitor_email) ?>"> <br /> <label for="username">Username in forums: </label> <br /> <input type="text" name="username" value="<?php echo htmlentities($username) ?>"> <br /> <label for="devwhy">Why do you want to be a developer? </label> <br /> <input type="text" name="devwhy" value="<?php echo htmlentities($devwhy) ?>"> <br /> <label for="codingknow">What do you rate yourself in PHP, HTML, and CSS coding? (out of 50): </label> <br /> <input type="text" name="codingknow" value="<?php echo htmlentities($codingknow) ?>"> <br /> <label for="excomments">Extra Comments:</label> <br /> <textarea name="excomments" rows=8 cols=30 ><?php echo htmlentities($excomments) ?></textarea> <br /> <img src="captcha.php?rand=<?php echo rand(); ?>" id="captchaimg" > <label for="excomments">Enter the code above here :</label> <input id="6_letters_code" name="6_letters_code" type="text"> <br /> <input type="submit" value="Submit" name="submit"> </form> </div></div></div></html> The main problem is the form is not working like its supposed to.
-
I followed a tutorial on making an contact form. I decided to turn it to a contact form with captcha but it gives me the following errors in the header. Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/ruko/public_html/JoinDevTeam.php:13) in /home/ruko/public_html/JoinDevTeam.php on line 49 Warning: Cannot modify header information - headers already sent by (output started at /home/ruko/public_html/JoinDevTeam.php:13) in /home/ruko/public_html/JoinDevTeam.php on line 81 Can someone fix this. I got the code at a tutorial. <?php { session_start(); if(($_SESSION['security_code'] == $_POST['security_code']) && (!empty($_SESSION['security_code'])) ) { // Insert you code for processing the form here, e.g emailing the submission, entering it into a database. unset($_SESSION['security_code']); } else { // Insert your code for showing an error message here } if(isset($_POST['submit'])) if(empty($errors)) { //send the email $to = "[email protected]"; $subject="Developer Queuing"; $from = "[email protected]"; $ip = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : ''; $body = "A user $name wants to be a developer:\n". "Name: $name\n". "Email: $visitor_email \n". "Username: $username \n". "Why he/she wants to be a developer: $devwhy \n". "Coding Knowledge: $codingknow \n". "Comments: \n ". "$user_message\n". "IP: $ip\n"; $headers = "From: $from \r\n"; $headers .= "Reply-To: $visitor_email \r\n"; mail($to, $subject, $body,$headers); header('Location: thank-you.html'); } } ?> <div class="wrap"> <div id="bigcontent"> <div id="content"> <form method="POST" name="contact_form" action="JoinDevTeam.php"> <br /> <label for="name">Name: </label> <br /> <input type="text" name="name" value="<?php echo htmlentities($name) ?>"> <br /> <label for="email">Email: </label> <br /> <input type="text" name="email" value="<?php echo htmlentities($visitor_email) ?>"> <br /> <label for="username">Username in forums: </label> <br /> <input type="text" name="username" value="<?php echo htmlentities($username) ?>"> <br /> <label for="devwhy">Why do you want to be a developer? </label> <br /> <input type="text" name="devwhy" value="<?php echo htmlentities($devwhy) ?>"> <br /> <label for="codingknow">What do you rate yourself in PHP, HTML, and CSS coding? (out of 50): </label> <br /> <input type="text" name="codingknow" value="<?php echo htmlentities($codingknow) ?>"> <br /> <label for="excomments">Extra Comments:</label> <br /> <textarea name="excomments" rows=8 cols=30 ><?php echo htmlentities($excomments) ?></textarea> <br /> <img src="captcha.php?rand=<?php echo rand(); ?>" id="captchaimg" > <label for="excomments">Enter the code above here :</label> <input id="6_letters_code" name="6_letters_code" type="text"> <br /> <input type="submit" value="Submit" name="submit"> </form> </div></div></div></html>
-
When I add games, I want them to be in rows. If there are over 15 rows, then there will be pages. I don't know how to do all that! Can someone give me examples or edit the file? New edit: [code=php:0] <?php require_once('mysql.php'); mysql_select_db("ruko_fp", $con); $thispage = $_SERVER["REQUEST_URI"]; $category = strstr("$thispage","="); $category = substr($category, 1); $result = mysql_query("SELECT * FROM games WHERE category LIKE '%$category%'"); $num_rows = mysql_num_rows($result); if($num_rows == 0) { echo "That was not a valid category."; // You can make the above line whatever you wish, it just tells people that no games with that category were found } else { while($row = mysql_fetch_array($result)) { $flashlink = $row['gameswf']; $gid = $row['gid']; $gametitle = $row['gametitle']; $gamedescription = $row['gamedescription']; $gamerating = $row['gamerating']; $gamereview = $row['gamereview']; $imgsrc = $row['imgsrc']; } } ?> <head> <title>Browsing Category, <?=$category;?></title> <meta name="description" content="Browsing Category, <?=$category;?>" /> <meta name="keywords" content="Game, Fun, Flash" /> <meta name="author" content="Luigi R." /> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> <link rel="icon" type="image/png" href="images/favico.png" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <div class ="wrap"> <? include('announcements.html') ?> <? include('logo.html') ?> <? include('categories.html') ?> <div id='conTOP'> <div id='content'> <h4>Browsing Game Category, <?=$category;?></h4> <table id="summaryTbl"> <col id="Location" width="100"> <col id="Offer" width="350"> <col id="Points"> <tr id="gametr1"> <th id="gameth">Thumbnail</th> <th id="gameth">Title</th> <th id="gameth">Game Rating</th> </tr> <tr class="summaryTR summaryTR1"> <th><img src="<?=$imgsrc;?>"></img></th> <th><a href="ViewGame.php?gid=<?=$gid;?>"><?=$gametitle;?></a></th> <th><?=$gamerating;?></th> </tr> [/code]
-
My php Category system not supported in many browsers
Ruko replied to Ruko's topic in PHP Coding Help
Grr... cant get the edit feature for the topic above me! New edit: <?php require_once('mysql.php'); mysql_select_db("ruko_fp", $con); $thispage = $_SERVER["REQUEST_URI"]; $category = strstr("$thispage","="); $category = substr($category, 1); $result = mysql_query("SELECT * FROM games WHERE category LIKE '%$category%'"); $num_rows = mysql_num_rows($result); if($num_rows == 0) { echo "That was not a valid category."; // You can make the above line whatever you wish, it just tells people that no games with that category were found } else { while($row = mysql_fetch_array($result)) { $flashlink = $row['gameswf']; $gid = $row['gid']; $gametitle = $row['gametitle']; $gamedescription = $row['gamedescription']; $gamerating = $row['gamerating']; $gamereview = $row['gamereview']; $imgsrc = $row['imgsrc']; } } ?> <head> <title>Browsing Category, <?=$category;?></title> <meta name="description" content="Browsing Category, <?=$category;?>" /> <meta name="keywords" content="Game, Fun, Flash" /> <meta name="author" content="Luigi R." /> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> <link rel="icon" type="image/png" href="images/favico.png" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <div class ="wrap"> <? include('announcements.html') ?> <? include('logo.html') ?> <? include('categories.html') ?> <div id='conTOP'> <div id='content'> <h4>Browsing Game Category, <?=$category;?></h4> <table id="summaryTbl"> <col id="Location" width="100"> <col id="Offer" width="350"> <col id="Points"> <tr id="gametr1"> <th id="gameth">Thumbnail</th> <th id="gameth">Title</th> <th id="gameth">Game Rating</th> </tr> <tr class="summaryTR summaryTR1"> <th><img src="<?=$imgsrc;?>"></img></th> <th><a href="ViewGame.php?gid=<?=$gid;?>"><?=$gametitle;?></a></th> <th><?=$gamerating;?></th> </tr> How will I let the SQL add multiple rows? -
My php Category system not supported in many browsers
Ruko replied to Ruko's topic in PHP Coding Help
Wait, how do I put the links in my content. See the YELLING areas? How do I replace that with the game in the category Edited file: <?php require_once('mysql.php'); mysql_select_db("ruko_fp", $con); $thispage = $_SERVER["REQUEST_URI"]; $category = strstr("$thispage","="); $category = substr($category, 1); $result = mysql_query("SELECT * FROM games WHERE category LIKE '%$category%'"); $num_rows = mysql_num_rows($result); if($num_rows == 0) { echo "That was not a valid category."; // You can make the above line whatever you wish, it just tells people that no games with that category were found } else { while($row = mysql_fetch_array($result)) { echo "<a href=\"ViewGame.php?gid=".$row['gid']."\">".$row['gametitle']."</a>"; $flashlink = $row['gameswf']; $gid = $row['gid']; $gametitle = $row['gametitle']; $gamedescription = $row['gamedescription']; $gamerating = $row['gamerating']; $gamereview = $row['gamereview']; } } ?> <head> <title>Browsing Category, <?=$category;?></title> <meta name="description" content="Browsing Category, <?=$category;?>" /> <meta name="keywords" content="Game, Fun, Flash" /> <meta name="author" content="Luigi R." /> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> <link rel="icon" type="image/png" href="images/favico.png" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <div class ="wrap"> <? include('announcements.html') ?> <? include('logo.html') ?> <? include('categories.html') ?> <div id='conTOP'> <div id='content'> <h4>Browsing Game Category, <?=$category;?></h4> <table id="summaryTbl"> <col id="Location" width="100"> <col id="Offer" width="350"> <col id="Points"> <tr id="gametr1"> <th id="gameth">Title</th> <th>Rating</th> <th>Review</th> </tr> <tr class="summaryTR summaryTR1"> <td><a href="ViewGame.php?gid=GAME ID OF THE CATEGORY">GAME TITLE</a></td> <td>GAME RATING</td> <td>GAME REVIEW</td> </tr> -
My php Category system not supported in many browsers
Ruko replied to Ruko's topic in PHP Coding Help
It works now, thanks m8. -
http://flash-planet.co.cc/BrowseGame.php?category=quiz Some of you will see a link that says "The Impossible Quiz" and people with browsers such as Opera and Chrome can't see it. In IE, 6, 7, 8, the code is all messed up. And its only viewable in firefox. I can't seem to find any solutions to fix this. Can someone fix this for me? Code: <?php require_once('mysql.php'); mysql_select_db("ruko_fp", $con); $thispage = $_SERVER["REQUEST_URI"]; $category = strstr("$thispage","="); $category = substr($category, 1); $result = mysql_query("SELECT * FROM games WHERE category LIKE '%$category%'"); $num_rows = mysql_num_rows($result); if($num_rows == 0) { echo "That was not a valid category."; // You can make the above line whatever you wish, it just tells people that no games with that category were found } else { while($row = mysql_fetch_array($result)) { echo "<a href=\"ViewGame.php?gid=".$row['gid'].">".$row['gametitle']."</a>"; // generates a link to each game in this category and inserts a line break each time } } ?>
-
nvm I got it figured out. solved.
-
Scratch that, im currently writing my SQL code and now im getting confused. >.< It makes me wanna pull my hair out. Maybe someone can give me part of that code pls. I have a REALLY hard time writing out my codes properly.
-
oh its fine m8 I got a hold of it now
-
Parse error: syntax error, unexpected '=' in /home/ruko/public_html/ViewGame.php on line 4 <?php require('mysql.php'); mysql_select_db("ruko_fp", $con); sql="SELECT * FROM games WHERE gameid='$_GET['gameid']"; $result=mysql_query($sql, $con); while ($row=mysql_fetch_array($result)) { echo "Title: ".$row['gametitle']."<br>"; echo "Genre: ""; }
-
So im testing and making an arcade system that MAY be included in the ezboards system. Im making a "GameInfo" Page and im testing things out and see if theres errors. The problem is that the script is not picking up a certain from that ID. When I go to "domain.com/ViewGame?gid=34283", it doesn't pick up the gaming info from that ID in the mySQL. Help anyone? <?php require('mysql.php'); mysql_select_db("ruko_fp", $con); // Define the variables $gid = $_GET['gid']; $gametitle = $_GET['gametitle']; $gamedescription = $_GET['gamedescription']; $gamerating = $_GET['gamerating']; $gamereview = $_GET['gamereview']; $gameid = $_GET['gid']; ?> TEST: <h3><? $gametitle ?></h3> Heres what is displayed on a certain ID: TEST: <game title supposed to be here>
-
How do I make stuff like <!-- IF --> or <!-- ENDIF -->
Ruko replied to Ruko's topic in PHP Coding Help
How about stuff like <!-- IF LOGGED IN --> or <!-- INCLUDE --> -
How do I make stuff like <!-- IF --> or <!-- ENDIF -->
Ruko replied to Ruko's topic in PHP Coding Help
Thats what im looking for. Now how do I write it, lol. -
Im currently making template phases for the forum and its HTML templates. How do I add and make these things function. Example: <b>Hello World</b> <!-- ECHO: Hello --> <!-- INCLUDE hello.htm -->
-
Help! Fatal error: Call to undefined function mysql_select_database()
Ruko replied to Ruko's topic in PHP Coding Help
okay, thanks m8 -
Help! Fatal error: Call to undefined function mysql_select_database()
Ruko replied to Ruko's topic in PHP Coding Help
fixed it and works! thanks man. Another (minor) problem in the registration script is when I hit the submit button with the form incompleted, i see this: Please fill in all the fields!Thanks for registering with us! Code (where the problem is): if($name == false || $pass == false || $pass_conf == false || $email == false){ echo "Please fill in all the fields!"; }; if($pass != $pass_conf){ echo "Passwords do not match!"; } else { $connection = mysql_connect($host, $dbuser, $dbpass); $db = mysql_select_db($dbname, $connection); $sql = "INSERT INTO user (username,password,email,ip) VALUES ($name, $pass, $email, $ip)"; $result = mysql_query($sql); echo "Thanks for registering with us!"; }; ?> I wrote it all out. Its a really messy script. Maybe you guys can fix all this?