Welcome, Guest
  • Author Topic: apache,php,mysql package  (Read 1433 times)

    nicolas zakrzewicz

    • Server what's that
    • *
    • Posts: 13
      • View Profile
      • Email
    apache,php,mysql package
    « on: 12/17/02, 05:59 »
    Hi, and thanks in advance if anyone can help me,in the past i had been working with apache,php,mySQL manually installed(with Jeff`s tutorial),recently i try to install it in a  Windows 2000 profesional and i coudn`t do it, so i install the automatic package,and it seeems to work fine but something its wrong because when i enter an insert query it inserts a new row in the database but it inserts it empty whith the exeption of the id field,so the button that targets the action is working only the information of the text fileds is not passing.Help me please.
    P.D:how can i put my other databases made in the manually installed versions in this package?
    Thanks.
    Nicolas.

    Musicman

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 2685
      • View Profile
      • Email
    Re:apache,php,mysql package
    « Reply #1 on: 12/17/02, 07:54 »
    Hi,

    are you aware that  PHP 4.0.x automatically made all variables from the request globals, so you would write $email if flash sent an email vatiable.
    Freom 4.1 on, this has changed, you should now pick up variablles with
    $email = $_POST[email];
    or
    $email = $_GET[email];
    as appropriate. Note this is a security enhancement - it is no good idea to enable the oöd functionality other than to ease the change

    Musicman