Search results

  1. C

    Simple string comparison in php?

    Hi guys I have simple string comparion question but im not sure how to attack it. Given a string like : 'aaa bbb ccc ddd' and another string like 'aaa bbb' I want to know how many full elements are in both strings, in this case 2, the 'aaa' and 'bbb' I thought maybe spilt the 2nd string into...
  2. C

    How to declare a global variable in PHP?

    Hi guys, In PHP i have a array taken from a file. This is stored in a $arrayResults = array('.......... [data]) but this is a rather large array and i dont want to have to pass it to every function that needs it i need a way so that on declaration of this $arrayResults, this variable is...
  3. C

    How to declare a global variable in PHP?

    Hi guys, In PHP i have a array taken from a file. This is stored in a $arrayResults = array('.......... [data]) but this is a rather large array and i dont want to have to pass it to every function that needs it i need a way so that on declaration of this $arrayResults, this variable is...
  4. C

    What is a good open-source PHP?

    Hi guys Right now im using a open sourced PHP called QCubed, it has cool functions like adding buttons, textboxes and functinos for hiding textboxes But it is extremly badly documented and adding functionality is nearly impossible, even understanding the code for doing these things is...
  5. C

    What are some of the properties you can put in HTML Render() ?

    Hi guys In the renderer for HTML it can render buttons and panels and the such, in the tutorials everything is done with <?php $this->btnToggle->Render() ?> With no parameters inside the render() function, it works fine but im sure there are some cool things u can do with it. Like by trial...
  6. C

    How to 'click a button' inside PHP code?

    Hi guys Just a quick question regarding PHP coding for HTML. Im using a program called QCubed for functions that can be used in HTML pages, It allows me to add buttons and txtboxes to the HTML pages, The way it treats buttons is like a trigger to a function like this...
  7. C

    How to hide an object visibility in PHP or HTML?

    Hi guys Just a quick question, is there a way to hide the visibility of say a panel or a button in the PHP code? For instance i want it to hide a certain panel if a certain condition is not met, i think this is best done in PHP rather than HTML, inside a IF statement. I know in java it can be...
  8. C

    adding txt to txt string in HTML?

    hi guys just a simple question, to add txt to a certain variable its done with $this->txtAdding->Text = 'ADDING TXT'; if i wanted to keep the txt, 'ADDINT TXT, and extend it to say ADDING TXT AGAIN how do i put the 'again' in the string? i tried 'ADDING TXT' + 'AGAIN' but it assumes its a...
  9. C

    How to declare a variable in PHP that does not clear on refresh?

    Hi guys How do i declare a variable in PHP that goes not clear on refresh of the page or call to the server? I understand that the variables are automatically "FormState" But i want one that remebers its value on refresh of the page Is this done through 'persistance' or 'cache' or some other...
  10. C

    Why does my dog always lick my guinea pig?

    Ok, we have a dog, she's quite a timid dog that barks at her own shadow, and she loves being snuggled and things on the sofa and we have never seen her attack a small animal she always just wants to play (in fact the ate a spider once and spat it back out :P). She always seems to lick my...
  11. C

    Korean Movie similar to "Once Upon a Time in High School"?

    Does anyone know of a Korean movie similar to "Once Upon a Time in High School"? I just watched this and really enjoyed the whole school-drama type thing, any recommendations?
Back
Top