Forum: PHP Aug 16th, 2007 |
| Replies: 8 Views: 1,455 Did you hash the password? using MD5 or SHA1... |
Forum: PHP Jul 9th, 2007 |
| Replies: 6 Views: 1,078 azimuth0... :)
Thank you very much..... its working now...
i just found out if u turn on the "register global" setting for php5 ... the old codes will work as well....
again.... thanks....... |
Forum: PHP Jul 9th, 2007 |
| Replies: 6 Views: 1,078 Thank you for replying.... really appreciate it...
i tried....
<?php
if ($_REQUEST['$id==1'] && $_REQUEST['$lang==1'])
{
echo "hello";
}
?> |
Forum: PHP Jul 9th, 2007 |
| Replies: 6 Views: 1,078 <?php
if ($id == 1 && $lang == 1)
{
echo "hello";
}
?>
hey guys i am working for my final year project. i have a problem. when i tried to run this url on my pc
... |
Forum: C++ May 4th, 2006 |
| Replies: 3 Views: 2,449 hi everybody, this is the small c++ program for selection sort using functions.
#include <iostream>
using namespace std;
void selectionSort(int numbers[], int array_size);
int main () { |