Search found 5 matches

by ~ Zymus ~
Wed Nov 19, 2008 12:14 am
Forum: Javascript
Topic: Problem With JavaScript
Replies: 5
Views: 599

Re: Problem With JavaScript

Nope, still get the same error: <html>     <head>         <title>Test</title>                 <script language="javascript">             <!--                 function Test()                     {                         document.write("test");                     }             //...
by ~ Zymus ~
Tue Nov 18, 2008 8:20 pm
Forum: Javascript
Topic: Problem With JavaScript
Replies: 5
Views: 599

Problem With JavaScript

Hello, I am trying to get "test" to print on the screen whenever you click a button. Like so: <html>     <head>         <title>Test</title>                 <script language="javascript">             <!--                 function Test()                     {                       ...
by ~ Zymus ~
Mon Nov 17, 2008 11:06 pm
Forum: PHP - Code
Topic: PHP Tab
Replies: 1
Views: 111

PHP Tab

Hello, i was just wondering if there was a way to make tabs in PHP. For example have a navigation bar, but instead of clicking on a link, and going to a different page, clicking on an element, and changing the contents of a "Panel" underneath it. Kind of like an "onClick" functio...
by ~ Zymus ~
Sun Nov 09, 2008 2:26 am
Forum: PHP - Code
Topic: Inserting Into HTML page
Replies: 0
Views: 256

Inserting Into HTML page

Hello, I am trying to find the most efficient way to change html, depending on whether or not a certain condition is met. I found a way to do it, but im wondering if it is the most efficient way. Because IMO, it looks messy... index.php: <?php function GetLoginInfo()     {         if(isset($_COOKIE[...
by ~ Zymus ~
Sat Nov 08, 2008 12:25 am
Forum: PHP - Code
Topic: Getting Rows from MySQL
Replies: 2
Views: 240

Getting Rows from MySQL

Hello, I have a problem with my PHP script. Im trying to test if a row has the same value as a user input. I want to test and see if $Username is equal to a specific row in the $Usernames Rows.   <?php $Username = $_POST["Username"]; $Password = $_POST["Password"];   $Connected =...