Forum: PHP Dec 7th, 2005 |
| Replies: 0 Views: 1,574 meuorkut i don´t speak enlgish very well and i want to explain the vulnerability/problem whith orkut. Brazilian guy created a php script that you can send message for all your friends in orkut he did too a... |
Forum: PHP Aug 21st, 2005 |
| Replies: 4 Views: 1,108 Re: system login error the error is: i put the correct login and correct password then i log in but don´t show any information about the user |
Forum: PHP Aug 20th, 2005 |
| Replies: 4 Views: 1,108 |
Forum: PHP Aug 19th, 2005 |
| Replies: 4 Views: 1,108 system login error hello guys, i have a system login and i put the correct login and password and the script is correct but don´t show any information about the user
<?
if (isset($_POST['usr']) &&... |
Forum: PHP Aug 17th, 2005 |
| Replies: 2 Views: 1,321 |
Forum: PHP Aug 17th, 2005 |
| Replies: 2 Views: 1,321 rand number i have:
function numero() {
$R .= rand (1,100000000000000);
}
$sql = "INSERT INTO boleto (`numero`)
VALUES ('".numero()."')";
$comsql = mysql_query($sql) or DIE("ERRO Mysql: ".mysql_error()); |
Forum: PHP Aug 17th, 2005 |
| Replies: 5 Views: 1,883 Re: Search two tables my script now:
<?
if (isset($_POST['usr']) && isset($_POST['pwd'])) {
$usr = stripslashes($_POST['usr']);
$sql = "SELECT * FROM usuarios WHERE login = '".$usr."' "; |
Forum: PHP Aug 17th, 2005 |
| Replies: 5 Views: 1,883 Re: Search two tables thanks but not work i tried this:
$sql = "SELECT * from usuarios where login = '".$usr."' ";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)) {
$user=$row[id];
echo $user; |
Forum: PHP Aug 17th, 2005 |
| Replies: 5 Views: 1,883 Search two tables hi, i have two tables and i want to search in two tables and show info about the user.
i have:
ususarios
id name age login
1 ruan 14 ruan1
boleto
id name money login |