Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~4K People Reached
Favorite Forums

9 Posted Topics

Member Avatar for titos97

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 …

0
365
Member Avatar for L-D

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

Member Avatar for titos97
0
244
Member Avatar for titos97

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 …

0
160
Member Avatar for asma.fayaz.77

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'])); }

Member Avatar for titos97
0
866
Member Avatar for Sankar_1

$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";

Member Avatar for titos97
0
677
Member Avatar for sk4nyk

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 …

Member Avatar for sk4nyk
0
217
Member Avatar for titos97

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 …

Member Avatar for titos97
0
640
Member Avatar for titos97

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 …

Member Avatar for minitauros
0
395
Member Avatar for titos97

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 …

Member Avatar for lucyoop
0
117

The End.