Jump to content

riddhi

Members
  • Posts

    79
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

riddhi's Achievements

Member

Member (2/5)

0

Reputation

  1. THanks thorpe and PFMaBiSmAd for those helful information. But, PFMaBiSmAd could you please elaborate on it a bit more I mean when tokenized is it not compiled?? Is there any particular site which will provide me useful input in this regard.
  2. I read it somewhere that they generate bytecode in php5 so does it not generate any bytecode?? even in case of interpretation
  3. PHP 5 is compiled or is interpreted? Also after creating a .php file with eclipse do I need to build it? is there any application to build the php file?
  4. <?php class A { function foo() { if (isset($this)) { echo '$this is defined ('; echo get_class($this); echo ")\n"; } else { echo "\$this is not defined.\n"; } } } class B { function bar() { A::foo(); } } $a = new A(); $a->foo(); A::foo(); $b = new B(); $b->bar(); B::bar(); ?> In the above what does A::Foo() represents a static method?? is there no declaration difference between the static and the normal method.
  5. THanks a lot to thorpe and dooper3 for those help.
  6. what should be the exact term for searching??
  7. When should one use -> in php what is its purpose?
  8. Is it possible to do it with the help of XML file as it will be a light weight one. Come one !!!! Some one please help....
  9. Thank you adam291086 for the constant help. but the point is that How to code the page of say admin/retailer to modify the menu options accordingly? there I think we need a xml file where we can save the changes and create the menu dynamically of the less powerful user.
  10. yes the role management part of the database is clear to me....I can easily implement it. But the main complexity lies in the enabling/disabling menu option of the lower graded user.... :'(. Can it be done using intermediate XML file ??? from which menu to be constructed? in google please give the relevant link which may be of help to me.
  11. I want to define a menu for Admin,retailer and user such that Admin has rights to enable/disable menus of Retailer/User while Retailer have rights to do the same for user...and so on. Is it possible to do so with XML/Database approach.
  12. Is it possible to move the thumbnails(retrived from database) from right to left? Please give function name or materials relating to it.
  13. please show how to go about it?
  14. Sorry to be late her is the code :'( <script language='Javascript' type='text/javascript'> xCo =-100; function moveObjRight(obj) { obj.style.left=xCo; xCo +=2; if(xCo < 100) { window.setTimeout('moveObjRight(' +obj.id+');', 0); } } </script></head> <p> <img id='myImg' src='/plaincart/images/product/f3738c5176628516539b1c09140d792f.jpg' style='z-index: 0 left: -100px position: absolute top: 50px'> </p> <script language='JavaScript'> moveObjRight('myImg'); </script> <p> <img id='myImg' src='/plaincart/images/product/182211127b3b784ff1db58d7260232a5.jpg' style='z-index: 0 left: -100px position: absolute top: 50px'> </p> <script language='JavaScript'> moveObjRight('myImg'); </script> <p> <img id='myImg' src='/plaincart/images/product/d92736b4f40f5d4a9a1c1913446e63d1.jpg' style='z-index: 0 left: -100px position: absolute top: 50px'> </p> <script language='JavaScript'> moveObjRight('myImg'); </script> <p> <img id='myImg' src='/plaincart/images/product/003e5198a07571ec000bc6c183d80dfd.jpg' style='z-index: 0 left: -100px position: absolute top: 50px'> </p> <script language='JavaScript'> moveObjRight('myImg'); </script> <p> <img id='myImg' src='/plaincart/images/product/a2d2d31be217aaabdccdf565512212d5.jpg' style='z-index: 0 left: -100px position: absolute top: 50px'> </p>
×
×
  • 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.