php-general Digest 23 Apr 2012 11:15:40 -0000 Issue 7785

2012-04-23 Thread php-general-digest-help
php-general Digest 23 Apr 2012 11:15:40 - Issue 7785 Topics (messages 317646 through 317649): Re: [PHP-DB] School timetable in php 317646 by: tamouse mailing lists 317649 by: Tony Marston Re: Blocking URL hacking attemps 317647 by: Mihamina Rakotomandimby

[PHP] Re: [PHP-DB] School timetable in php

2012-04-23 Thread Tony Marston
tamouse mailing lists wrote in message news:CAHUC_t-cch8cBXZvzWtx42ZPFEuVkMPG=50jkwv+gygelk_...@mail.gmail.com... On Sun, Apr 22, 2012 at 1:41 AM, Vinay Kannan viny...@gmail.com wrote: Weekly subject wise lecture schedule, subject wise / faculty wise. On Sun, Apr 22, 2012 at 12:02 PM,

[PHP] Re: No error reporting on

2012-04-23 Thread Jim Giner
Just my $.02, but don't you need: ini_set('display_errors', '1'); as well? Dotan Cohen dotanco...@gmail.com wrote in message news:CAKDXFkMOH63=hnlekxugampqwrhvvet2x4iw-42soqkisrg...@mail.gmail.com... Given this code: error_reporting(-1); -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Re: No error reporting on

2012-04-23 Thread Dotan Cohen
On Mon, Apr 23, 2012 at 14:18, Jim Giner jim.gi...@albanyhandball.com wrote: Just my $.02, but don't you need: ini_set('display_errors', '1'); as well? Possibly, thanks. I actually don't have access to that! -- Dotan Cohen http://gibberish.co.il http://what-is-what.com -- PHP General

Re: [PHP] Re: No error reporting on

2012-04-23 Thread Jim Lucas
On 04/23/2012 01:21 PM, Dotan Cohen wrote: On Mon, Apr 23, 2012 at 14:18, Jim Ginerjim.gi...@albanyhandball.com wrote: Just my $.02, but don't you need: ini_set('display_errors', '1'); as well? Possibly, thanks. I actually don't have access to that! That line should be placed in your

Re: [PHP] Re: No error reporting on

2012-04-23 Thread Dotan Cohen
On Mon, Apr 23, 2012 at 16:53, Jim Lucas li...@cmsws.com wrote: Possibly, thanks. I actually don't have access to that! That line should be placed in your script.  not the php.ini file Yes, I'm working on a functions file that is include()ed by the main script. I'm not supposed to touch the

[PHP] session lost problem

2012-04-23 Thread bug zhu
hi all: there are tow php files a.php and b.php, content of a.php as follows: ?php session_start(); if (!isset($_GET['flag'])) { header('Location: b.php'); } else { var_dump($_SESSION); } content of b.php as follows: ?php session_start(); session_commit(); $_SESSION['test'] = 'test';

Re: [PHP] session lost problem

2012-04-23 Thread Stuart Dallas
On 24 Apr 2012, at 05:58, bug zhu wrote: there are tow php files a.php and b.php, content of a.php as follows: ?php session_start(); if (!isset($_GET['flag'])) { header('Location: b.php'); } else { var_dump($_SESSION); } content of b.php as follows: ?php session_start();

Re: [PHP] session lost problem

2012-04-23 Thread Stuart Dallas
Please don't top-post, and please include the list when replying. On 24 Apr 2012, at 06:35, bug zhu wrote: 2012/4/24 Stuart Dallas stu...@3ft9.com On 24 Apr 2012, at 05:58, bug zhu wrote: there are tow php files a.php and b.php, content of a.php as follows: ?php session_start();