Jump to content

ragekc

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by ragekc

  1. THANKS!! IT WORKED!!!i forgot.... how do i take out the tool bars...all of them??... i want just the plain white site .... thanks!!!
  2. i wanna make one link that opens a pop up ... i would like to know how can i adjust the width and the height of the pop up window... i know how to set the window size on the link... i wanna know how to adjust it in the same window(i dont know if its clear what im saying)...in other words... adjust the current window´s size before it loads... but without butting the code on the clicked link...the reazon i wanna know this is because flash doesnt allow me to use a big code.. thanks!!!
  3. ragekc

    error.... =(

    it still doesnt work =(((doesnt list anything...(blank)
  4. ragekc

    error.... =(

    PS: The names are exact as the database ... so thats no the error...
  5. ragekc

    error.... =(

    HERE´S MY CODE:<? $hostname = "localhost"; $dbname = "bd_clientes"; $username = ""; $password = ""; MYSQL_CONNECT($hostname, $username, $password) OR DIE("Nao pude conectar"); @mysql_select_db( "$dbname") or die( "Nao pude selecionar o banco de dados"); $query = "SELECT MAX(codigocliente) FROM tblsorteio" ; $result = MYSQL_QUERY($query); $row = mysql_fetch_array($result); ?> <html><head><title>Resultado</title></head><body><center><h1>Lista de Pessoas Cadastradas</h1></center> <? echo $row[codigocliente]; ?> </body></html>NO RESULT IS SHOWN!!I GUESS THE PROBLEM MUST BE IN THE $row[codigocliente] PART..CAN SOMEONE PLEASE HELP ME??THAANKS
  6. thanks man!!! .. so it isn´t important since im not going to use it..
  7. i have the folowing code:"SELECT LAST(codigocliente) AS highest_codigocliente FROM tblsorteio ORDER BY codigocliente";all that does(i think)...gets the last entry in the colum(codigocliente)...and the order by, orders them in onder from least to greatest...so codigo cliente = client code ... so it pulls out the last client registered in the DB ....i wanna know what does the part ... AS highest_codigocliente , do and do i need it in the code??w3schools said its an expression.. what is an expression??.. the resto of the code i understand.and one last thing .... if i can eliminate the ( AS highest_codigocliente ) how would the code look like??THANKS!!!!!!
×
×
  • Create New...