User Profile
Collapse
-
Occurrances of a String
I am doing a project with php and mysql. I need a code for count occurrences of a given string in a file or string. I have the code for read the contents of the files. Use that I can count the occurrence of a string in String. Otherwise give the code to count the occurrences of a string in a file. -
session is not working
I am developing a web site for forum. In login page. I registered the username as person in the session. And I try to read that person into another page. I will not working. I gave session_start() and session_registe r('person') functions in the home page.
the isset will return false.
sample coding
// in login.php
$_SESSION['person']=$userid;
// forumlist.php
echo $_SESSION['person'];
No activity results to display
Show More