9 Posted Topics
I am trying to make authenticate and authorization through windows 2008 active directory . i am able to authenticate and retrive users under direct member but unable to list or link users through member of member. suppose user joe is direct member of Dl-Engineering NS group and user sam is …
looks like you missing 1 parameter syntax should be like this (mysql_fetch_array($result)) you can also define array_type MYSQL_ASSOC - Associative array MYSQL_NUM - Numeric array MYSQL_BOTH - Default. Both associative and numeric array
On the Ad there is 2 security groups 1. SG-warehouse1 users : test1 2. SG-warehouse2 users : test2 These 2 Security groups belogs to one distubution list : DL-warehouse what i am trying to do instead of searching 2 secuirty gorups i like to check if the user links to …
remove $id = $_GET['id']; from line 7 and paste this code should solve your problem . its better to fix the issue not turn off the error reporting //Define & Sanitize variables $id=''; if (isset($_GET['id'])){ $id = strip_tags( trim($_GET['id'])); }
$to='[email protected]'; $subject = 'My Subject'; $email = '[email protected]' ; $headers = 'From:$email'; $message='hai'; $sen=mail($to,$subject, $message,$headers); if($sen) echo "yes"; else echo "no";
This example may give you some clue <?php $to = "[email protected]"; $subject = "test message"; $email = "[email protected]" ; $message = " Hello this is a test message "; $headers = "From:$email"; $sent = mail($to, $subject, $message, $headers) ; if($sent) {echo "Your mail was sent successfully delivered "; } else …
Hi Guys , I couldnt dispay sum of a column of sqlite database in php . I tried the sql statement in database its working fine but not sure how to dispay the result in PHP . I belive i need to fetch it and then dispay any help will …
On the form user enter rego no where it search database and display the output what i am looking is, if the entered data not match its should display " Record not found." <?php $search_Rego = ($_POST['RegoNo']); try { //open the database $db = new PDO('sqlite:iSearch.sqlite'); $result = $db->query("SELECT Fname …
hi i made a login page and created some user. now i like to make a sql queries with that user name. suppose username joe so he enter joe as a user name then login page sent to another page where sql qeries will be execute for that user: joe …
The End.
titos97