Recent content by Micro Sniff

  1. M

    PHP Multiple MySQL Statemnets?

    I want to put multiple sql statements on one php page. I am just getting information from a database and displaying them. I have the follwqing code for all of the threee sql statemetns below. <?php $sql1="SELECT * FROM crgallery1_tracks WHERE type='auto' "; $result1=mysql_query($sql1)...
  2. M

    HTML Onclick Change Style of DIV?

    I have the basic html code below, which will change the background color of the link you are clicking to the color blue. <a onclick="this.style.backgroundColor = 'blue';" style="background-color: red;" class="link">HELLO</a> The code is working, but I want it so that it changes the background...
  3. M

    How to Display a PHP Variable in HTML in an Echo?

    I have the following part of a PHP code below. echo '<table width="400" border="1" cellspacing="0" cellpadding="3"><tr><td width="30%">echo $rows['name'];</td><td width="30%">echo $rows['lastname'];</td><td width="30%">echo $rows['email'];</td></tr></table>'; I am trying to echo a row from a...
  4. M

    PHP Display From Database Script?

    I have the following code below. I keep getting the same error as follows: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/content/35/6821535/html/elktownshipsoccer/photos.php on line 85 I tried but I couldn't see anything. Can anyone tke a look...
  5. M

    PHP iFrame to Another Website?

    A have one website, which has PHP installed on the server. But I have another website which doesn't have PHP on the server. I basically want to display database data on the website that doesn't have PHP, which I know how to do, but only on my website that has PHP. Could I create a page with...
  6. M

    PHP Member Profile Error?

    I have a PHP code for a member profile below. <?php session_start(); include("scripts/database.php"); include("scripts/login.php"); $username=$_GET['username']; $sql="SELECT * FROM users WHERE username='$username'"; $result=mysql_query($sql); while($rows=mysql_fetch_array($result)){ ?>...
  7. M

    PHP Variable From Another Page?

    I basically want to define a variable on one page, and then display the variable on multiple other pages. I am trying to set a variable to the HTML code of a navigation bar so I can edit it without having to go through every page. How can this be done? Thanks to the two first answers, but is...
  8. M

    PHP Varible in an HTML link?

    I have a php page, that has a bit of html code that goes like this. <a href="member.php?username="<? echo $_SESSION['username']; ?>" class="login"><? echo $_SESSION['username']; ?></a> The varible will display the text, but when I go to the link, it just displays the addredd bar as...
  9. M

    PHP Varible in an HTML link?

    I have a php page, that has a bit of html code that goes like this. <a href="member.php?username="<? echo $_SESSION['username']; ?>" class="login"><? echo $_SESSION['username']; ?></a> The varible will display the text, but when I go to the link, it just displays the addredd bar as...
  10. M

    PHP Comment Code Check?

    I have a non sql comment system using one html form and then a php page. you can view it here. http://www.patmr.com/comment/comment.html Here is the comment html page: <html> <head> <title>Comment</title> </head> <body style="font-family: verdana; font-size: 16; color black;"> <form...
  11. M

    PHP Comment Code Check?

    I have a non sql comment system using one html form and then a php page. you can view it here. http://www.patmr.com/comment/comment.html Here is the comment html page: <html> <head> <title>Comment</title> </head> <body style="font-family: verdana; font-size: 16; color black;"> <form...
  12. M

    PHP Comment Code Check?

    I have a non sql comment system using one html form and then a php page. you can view it here. http://www.patmr.com/comment/comment.html Here is the comment html page: <html> <head> <title>Comment</title> </head> <body style="font-family: verdana; font-size: 16; color black;"> <form...
  13. M

    PHP Database Scripts?

    I have two PHP database scripts. One that adds information, and then one that displays the information automatically in a table. The columns in the table are id(auto_increment), name,creator, vehicle, and code. I have made it so that when you click on the name, it brings you to the link...
  14. M

    HTML PHP Database Help?

    I have tried and tried to find a way to create an html form and php script that will add information to a database. I have tried some scripts, none of them working, and I couldn't find any good tutorials. Could anyone point me towards a good tutorial or some free scripts? I do have PHP and...
Back
Top