Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
77% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~13.1K People Reached
Favorite Tags

12 Posted Topics

Member Avatar for syria718

<?php include 'ProcessDAO.php'; $dest=""; if(isset($_POST['login'])){ session_start(); // i get an error in this line !! $_SESSION['status']='online'; $_SESSION['breadcrumb']='home'; $pro = new ProcessDAO(); $dest = $pro->LogIn($_POST['username'],$_POST['password']); }else{ session_start(); $dest ="Location: ../index.php"; session_destroy(); } header($dest); ?> guyss can you help me out because in my Login.PHP file when i login i always get …

Member Avatar for Dani
0
8K
Member Avatar for syria718

$('#SaveProfile').bind("click", function(){ var pass_entered = $('#pass_entered').val();; var access = false; //check for the password entered if correct $.ajax({ type:'GET', url:'../process/passProtectionCheck.php', dataType:'json', data:{password:'pass_entered'}, success:function(e){ access = $(e).val(); if(access != true){ //if password is wrong notify user!! alert('Password Entered is Incorrect Data cannot be Save'); }else{ //if password is correct save data …

Member Avatar for radhakrishna.p
0
228
Member Avatar for syria718

guyss i just want to ask if anyone could show me a sample program on how to count the number of words,letters,and sentences in a file....using the c language.... thanks in advance!!

Member Avatar for bhavya_best
0
3K
Member Avatar for jayesh.rocks
Member Avatar for syria718

pals i just wanna ask if anyone could show me how to declare and call a 2d array? thanks in advance!!!

Member Avatar for NormR1
0
144
Member Avatar for ticktoc09

[URL="http://java2s.com"]http://java2s.com[/URL] i think this would help for this gives some examples and give meaning on how each function works....

Member Avatar for syria718
0
126
Member Avatar for anjoz

[URL="http://www.edcc.edu/faculty/paul.bladek/c_string_functions.htm#top"]http://www.edcc.edu/faculty/paul.bladek/c_string_functions.htm#top[/URL] [B][U]this link will surely help you..and try it on your own its better to learn little by little.....[/U][/B].

Member Avatar for arindam31
0
115
Member Avatar for kagotsky

just make a loop for that!!! its just a simple problem....you can do it just trust your intelegence

Member Avatar for arindam31
0
107
Member Avatar for syria718

[CODE]char main()/*Start of the function main???*/ { char choice1; char choices = 'y'; while(choices == 'y' && choices != 'n'){/*while loop initialization*/ print(); getchar(); scanf("%c",&choice1); printf("%c",choice1); switch(choice1){/*Switch case statement,,,*/ case 'a': case 'A': addContact(); break; case 'f': case 'F': search(contacts); break; case 'v': case 'V': list(); break; case 'e': case …

Member Avatar for Narue
0
278
Member Avatar for syria718

[CODE] deleteCont(){/*function in deleting contacts*/ printf("enter contact you want to delete: "); getchar(); fgets(find,100,stdin); j = 0; while(strcmp(contacts[j],find) != 0){/*start of while loop*/ if (strcmp(contacts[i],find) == 0){/*start of first while loop*/ printf("you want to delete %s",contacts[i]); size = strlen(contacts[j]); for(i = 0 ; i < size ; i++){/*start of 2nd …

Member Avatar for syria718
0
125
Member Avatar for DarkPyros

[URL="http://java2s.com/"]http://java2s.com/[/URL] i think youve gotta visit this site...hope it will help... just try..theres no harm in trying...:-)

Member Avatar for DarkPyros
0
186
Member Avatar for syria718

please help me fix these problem,,,, when i'm running the program it exits emediately [CODE]main()/*Start of the function main???*/ { do{/*do while loop initialization*/ print(); scanf("%c",&choice1); switch(choice1){ case 'A': case 'a': addContact(); break; case 'F': case 'f': search(contacts); break; case 'v': case 'V': list(); break; case 'e': case 'E': edit(contacts); …

Member Avatar for syria718
0
162

The End.