recommend spybot s&d, adaware se personal(lavasoftusa.com)
both excellent...i had an uncontrolable popup problem...had to reinstall windows...lost all my 9.8 gb of files...i hate popups
firefox rules!
thanks guys, but im fine now
[PHP]
if($QUERY_STRING == ""){
//default
}
elseif($QUERY_STRING == "login"){
login
}
[/PHP]
same thing as your switch example chroder, but more suitable to my cause, but u cleared it up thanks
well i use it as
[PHP]
if($QUERY_STRING == "") {
// Main Page
}
elseif($QUERY_STRING == "foo"){
// the foo page
}
[/PHP]
which gets it like this
[PHP]http://www.vipercreations.com/login.php?login[/PHP]
instead of using login.p…
alright guys today if officially the best day of my life!!
i did it!!
i've finally created a fully functional membership, using sessions, all thanks to the extreme help from devdreams!!!
thanks to Felix and Nuvo!!!!
http://www.vipercreations.com…
right never mind i fixed it
heres the code i have now for login.php
[PHP]<?php
include 'connect/config.php';
{
session_start();
if($QUERY_STRING == "") {
// Main Page
echo "nothing here...";
} elseif($QUERY_STRING == "…
ah thanks for your quick reply mate
im trying to make a membership system by myself...
i want to have one page to do all the login/logout/registering functions for me.
so i just have login.php
[PHP]<?php
include 'connect/config.php';
{
sessi…
hey nice site toby!
congrats i know you'll love exploring the vast and amazing world of php.
remember, nubs are ALWAYS welcome here at DevDreams, right guys?
(hey, thats why im here :p )
i dont know anything about mysqlresult tags, but maybe the syntax for result() is wrong...just a suggestion
i looked it up and im not sure but try not putting "name" and "username" in front of the result() tag.
newb trying to h…
ok after alot of playing around i managed to come up with this:
deleting sript:
[PHP]<?php
include ("dbconnect.php");
$titleresult = mysql_query("SELECT * FROM tutorials") or die(mysql_error());
while($title = mysql_fetc…
alright so heres what ive come up with so far:
the main deleting page[PHP]<?php
include ("dbconnect.php");
$tresult = mysql_query("SELECT title, message FROM tutorials") or die(mysql_error());
while($titmess= mysql_fetch_r…