Search results

  1. I

    Is this a good example of how to use a class in PHP ?

    Is this a good example of how to use a class in PHP ? I have built a basic class that performs addition , substraction, multiplication and division of two numbers ... Below is the code .. I wanna know if I wrote this class properly <?php class operation { function Add($x,$y) { echo "The...
  2. I

    Why is the range() PHP function not working ?

    This function is supposed to display elements in the array ranging them from 1 to 10 .... But all it gives me as output is Array .... Below is my code <?php $numbers = array(1,3,5,2,4,8,6,9,7,10); $numbers = range(1,10); echo $numbers; ?> OUTPUT Array
  3. I

    How long should this take most people to process mentally ? I am testing my

    mental math skills here? I am testing how good I am at mental MATH ... How long would it take most people to process this mentally without any calculator or paper 4521 - 2738 438 + 585 Should it take two seconds ??? For me it takes me like 30 seconds and I am college educated ... Is something...
  4. I

    What would I expect in an entry level PHP programmer job as far as assignments...

    ...or responsabilities go ? As bachelor's degree holder in computer information systems ... what would you expect as far as responsabilities for an entry level PHP programmer job ??? like an idea of what would be expected of me to do as a person right out of college ? I know I would be doing...
  5. I

    What would I expect in an entry level PHP programmer job as far as

    assignments or responsabilities go ? As bachelor's degree holder in computer information systems ... what would you expect as far as responsabilities for an entry level PHP programmer job ??? like an idea of what would be expected of me to do as a person right out of college ? I know I would be...
  6. I

    What would I expect in an entry level PHP job as far as assignments or

    responsabilities go ? As bachelor's degree holder in computer information systems ... what would you expect as far as responsabilities for an entry level PHP programmer job ??? like an idea of what would be expected of me to do as a person right out of college ? I know I would be doing...
  7. I

    What's really WRONG with my PHP code this time ??? Thanks a lot , 10 points !!?

    I am trying to display contents from an HTML form through PHP , I am learning the language from .. it is not working .. HELP would be very much appreciated ! Here's the HTML form <html> <head> <title> Collecting Some informations </title> </head> <body> <h1> Please provide the following...
  8. I

    This small part of the PHP code is not working for some reason ... I need a little

    help , THANKS !!!? What the PHP is supposed to do is retrieving the values from the HTML form according to the area code that it belongs to and COMPUTE the price of shipping per pound because each area code has its own price for shipment .. It works to display the price of the area code BUT the...
  9. I

    How should this echo PHP code with multiplication be written ?

    I am trying to display the product of a multiplication in PHP using variables echo "( $cost* $weight)"; but it is not working .. This is assuming that I have already assigned the cost and weight their values and I included them in the php tags <?php ?> So how would you display...
  10. I

    I installed PHP with xampp but it doesnt run when I test a page, please help?

    Ok , so I downloaded PHP with XAMPP . Everything got installed , MYSQL and APACHE server, however, when I do a test and save it as a php file to see if it works , it doesnt work . I typed http://localhost/test.php but it won't load at all ... How can I fix this problem ?? Your help would be so...
Back
Top