Jump to content

b_angelr

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

b_angelr's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I wan to be like you when i grow up thorpe :D thanxs.....
  2. Ok now i feel dumb... 3 years of php expirience for nothing.... i got an extrange warning... i declare a viriable as private, i use it in one function when i'm going to use it in a second function it is said that the veriable doesn't exists.... an example: [code] <?php   class MySQL{       private $foo;       function first(){         $foo = mysql_connect(blablabla);       }       function second(){         mysql_close($foo); //here it sends me the error, it says $foo doesn't exist       }   } ?> [/code] Please can someone help me
  3. darn.... fool me.... thnxs thorpe ;D
  4. In the link code you need to specify i wich frame it will be opened [code]<a href="#" target"framename">your image here</a>[/code]
  5. You could use AJAX, i know there is a framework that loads files, or youcould requery the database when you click on a link and change your content
  6. I got some experienc now in php and was going to rebuild my website using oop, but know i recive an extrange parse error: here is the example code i used: [code] <?php   class MySQL{     //comment     public $myvar = "mystring";   } ?> [/code] And now it says thet i have an unexpected T_STRING on line 4. Somebody understands why these???
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.