Search found 7 matches
- Wed Aug 02, 2006 5:21 pm
- Forum: PHP - Code
- Topic: Session management with PHP
- Replies: 7
- Views: 570
Session management with PHP
I am building an application which has a user system. Security is a must here, and I decided not to use cookies. WHat I do is session_start() on every page, and one a user has logged in successfully, I simply define a few session variables used to authenticate the user from page to page. My main con...
- Wed Aug 02, 2006 5:14 pm
- Forum: PHP - Code
- Topic: Newbie to OOP php, looking for help with some php coding
- Replies: 5
- Views: 675
As stated, this is pretty straight forward. If you understand the basics of PHP this should be no problem, but if you are doing this to learn/practise OOP techniques, see the following tutorial for an introduction: http://www.phpfreaks.com/tutorials/48/0.php
- Wed Aug 02, 2006 5:10 pm
- Forum: PHP - Code
- Topic: dap_search() sizelimit
- Replies: 2
- Views: 359
- Thu Jun 22, 2006 4:56 pm
- Forum: Databases
- Topic: ODBC problems :( num_rows and another
- Replies: 1
- Views: 756
ODBC problems :( num_rows and another
I have the following code //Allready conected to database $sql = "select * from users where user_id='4'"; $result = odbc_exec($dblink, $sql); $row = odbc_fetch_array($result); echo $row['name']; //The above works properly with no problems what so ever $sql = "select * from products wh...
- Sun Feb 12, 2006 11:20 am
- Forum: PHP - Code
- Topic: Help with php forms
- Replies: 6
- Views: 371
- Sun Feb 12, 2006 10:49 am
- Forum: PHP - Code
- Topic: Help with php forms
- Replies: 6
- Views: 371
- Sun Feb 12, 2006 9:59 am
- Forum: PHP - Code
- Topic: Help with php forms
- Replies: 6
- Views: 371
Help with php forms
Hi, Im building a project that allows someone to add, edit, and delete a certain entry. Now this entry has all different types of characters, so ', /, \, etc. Im having problems with this. When I add an entry, i use the addslashes function, and when I display/edit them I use the strip slashes functi...