Recent content by funny t

  1. F

    In php and sql how can i use multiple tables to populate a form for updating user...

    ...information? Here is a simplified table structure: user userid PK first_name last_name parent parent_id PK parent_first_name parent_last name parent_user parent_user_id PK parent_id FK userid FK Here is what I have tried. I need to use the new table parent and parent_user to populate...
  2. F

    whats wrong with my php/sql?

    I get a blank screen when these statements are run. they are part of a larger program. the values of $userid and $parent_id are retrieved by the mysql_insert statements. The query3=sprintf(...= seems to be the problem: $userid= mysql_insert_id(); $parent_id= mysql_insert_id()...
  3. F

    give me a php code explanation and why i am getting an error message?

    $query2 = sprintf("insert into parent values(null,'$parent_first_name','$parent_last_name','%s')", mysql_real_escape_string($parent_first_name,$parent_last_name,$mysql_link)); I am getting this error:Column count doesn't match value count at row 1 this my var_dump of $query2: "insert into...
  4. F

    do you remember (what the cartoon and character was) a cartoon character that

    laughs in a descending scale? It starts at a mid tone note and the laugh goes wa wa wawa waaaaa, then lowers in tone then, wa wa wawa waaaa, lowers in tone and wa wa wawa waaaa. It was an old style shaving razor with the opening doors or an elephant... I watched it when I was really young in...
  5. F

    why are the single quotes needed in this PHP statement?

    specifically around the variables "$mysql_session_start_date" and $mysql_session_end_date" but they are not used for "$qual" and "time_diff" $query = "SELECT session_id, title, DATE_FORMAT(DATE_ADD(scheduled_time, INTERVAL $time_diff HOUR), '%m/%d/%y %l:%i%p'), teacher,username...
  6. F

    how to pass a parameter in php?

    Here is the line of code that I need to add the date to: p><a href="sessionadmin.php">List/Create Sessions</a></p> // I want to add a date to this "sessionadmin.php" link is pushed. I need to send a start date and end date to the sessionadmin.php script. // print "<p>Start Date (MM/DD/YY)...
  7. F

    Php authorization script that wont let users log in on other computers help?

    I am having trouble logging into my CMS on pc's other than my laptop. It's as though the code is reading a mac address or something. I use the same credentials on each pc. It gives me an errorm message that says" you don't have premissions to change this page. I am trying to edit the content via...
  8. F

    What does it mean to be strong in flash?

    I know what flash is but what would qualify a person as being strong with flash. This was something that I saw in add for a job. What would a person who was "strong" know?
Back
Top