Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: pookie62
  • Order by date
  1. pookie62

    Undefined variable ?

    That did it!! Thank you so much for your time and patience..
  2. pookie62

    Undefined variable ?

    Like I said, I found the script in a tutorial somewhere, and my knowledge of php is too little to sort things out myself.. Maybe this helps, the script from were all contentmessages are listed and through links can be deleted or editted. Then we come in the edit script were I get this error...
  3. pookie62

    Undefined variable ?

    I've tried several ways to fit in your suggestion but it's not getting any better.. D*mn.. was so close with this script.. I've no clue what to do now.. Should I post the other scripts ?
  4. pookie62

    Undefined variable ?

    You're doing several odd things here." Hmm glad I just found this script.. ;-) Oke, I commented out: $submit=''; changed back $id= $_GET['id']; left this: <form action="<? echo $PHP_SELF; ?>" method="POST"> Result: Undefined index on line 42 = if (!$submit) { // open database connection...
  5. pookie62

    Undefined variable ?

    Actually, it's part of a few scripts.. This is the script where content should become editable.. Please let me know if you need more info.. Appreciate the help ! Oke, this is the entire (edit.php)script: Now with the POST in it, I get the undefined index again.. <? // includes...
  6. pookie62

    Undefined variable ?

    Hi sleipnir214, Thanks for your quick reply. Don't get the error nomore but updating the content is working now. When I press the update button, the pages refreshes and content isn't changed.. any ideas ? Let me post most of the script.. // generate and execute query $slug=''; $content=''...
  7. pookie62

    Undefined variable ?

    Hi, Anyone sees why I'm getting undefine index for output ? "Undefined index: id" in /path to/edit.php on line 57 // display initial form with values pre-filled $submit=''; if (!$submit) { // open database connection $connection = mysql_connect($host, $user, $pass) or die ("Unable to...
  8. pookie62

    No new window !

    It's a JS script, already playing around with include.. Thanks again !
  9. pookie62

    No new window !

    Was afraid for this answer.. ;-) Thanks Dan..
  10. pookie62

    No new window !

    Hi, I'm using the SlideMenu 2.0 made by Thomas Brattli *Script date: 08/05/2002 This is the line from the script where some elements are given to call the proper values for the PHP script. This PHP script creates a table with results from a match. slideMenu.makeMenu('sub','Level...
  11. pookie62

    Sorting columns

    YES !! Thanks a million, really appreciate all your help !!!
  12. pookie62

    Sorting columns

    $perc = isset($val[$race]) ? $val[$race] : "--"; //is did not compete is still giving Illegal offset type and no scores are visible.. Columnheaders are looking great and displayed chronological ! It's getting there.. Didn't you get the zip file with data ?
  13. pookie62

    Sorting columns

    sended all relevant tables to your hotmail in zip file.. Thanks a lot !
  14. pookie62

    Sorting columns

    Forgot to mention there are no scores (perc) present either
  15. pookie62

    Sorting columns

    Getting several errors :-( Warning: Illegal offset type in C:\Inetpub\wwwroot\wedstrijd\2005\OKPview.php on line 69 Line 69 = if (isset($val[$race])): And the races column is repeated many time and has this text in it: Notice: strtotime(): Called with empty time parameter in...
  16. pookie62

    Sorting columns

    Copied the content of a date field from table wedstrijd: 2005-10-01 00:00:00
  17. pookie62

    Sorting columns

    Yes, this is the way ! I altered the Order By to: ORDER BY wedstrijd.Datum,klasse.Klasse,deelnemer.Voornaam;
  18. pookie62

    Sorting columns

    Oopsie... too busy with other things.. Just returned from weekly squash evening (23.00 my time) Primary/Foreign keys: deelnemer.Id = PK overzicht.deelnemerID = FK (PK field is not used) klasse.Id = PK wedstrijd.Id = PK which relates to overzicht.wedstrijdId I'm running MySQL here on a...
  19. pookie62

    Sorting columns

    Oke, deelnemer is the table which holds name(first and last are seperate),adress,membershipnumber emailadress etc. overzicht is created for displaying all scores in all matches for each 'deelnemer' (remember the previous post) klasse holds four categories in which everyone can choose to...
  20. pookie62

    Sorting columns

    Oke, here you go... CREATE TABLE `active_guests` ( `ip` varchar(15) NOT NULL default '', `timestamp` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`ip`) ) TYPE=MyISAM CREATE TABLE `active_users` ( `username` varchar(30) NOT NULL default '', `timestamp` int(11) unsigned NOT NULL default...

Part and Inventory Search

Back
Top