Search results

  1. J

    Will an unlocked Samsung Blackjack i607 work with a t mobile sim card?

    If the phone is a gsm phone and it's unlocked, then yes, it should work. There may be some features that won't work with a T-Mobile account, however.
  2. J

    How does PHP/SQL database do it?

    The database sits on the remote server (either the same web server system as the site or a separate server that the web server has access to). In the PHP script that fetches the data, a user name and password are passed to the database to allow access to the tables for a query. This is usually...
  3. J

    more php nesting intended?

    I doubt this would work no matter what, because you can't reference an indexed value of an array that hasn't been determined. You're asking to index a static method to which you're passing a paramater. As the poster above me stated, you have to have a reference or variable that holds the value...
  4. J

    How to Create a POP-Up in PHP (Server-Side Script)?

    Well, you can't do this directly in PHP, because PHP is a server-side language and the functionality you want takes place on the client side (from the browser). The simplest way to do this is to simply write a PHP script with the necessary JavaScript embedded in it, just as you would embed...
  5. J

    what is the easiest way to generate report in php pdf format.?

    PDF functionality is not built into PHP by default. You have to add in a special library and the necessary PHP package to utilize it. Read this: http://www.php.net/manual/en/book.pdf.php
  6. J

    what is the easiest way to generate report in php pdf format.?

    PDF functionality is not built into PHP by default. You have to add in a special library and the necessary PHP package to utilize it. Read this: http://www.php.net/manual/en/book.pdf.php
  7. J

    What is the relation between MySQL, PHP and Wordpress?

    PHP is a scripting language used on the server side of millions of websites. PHP helps you create dynamic websites by doing a lot of the backend programming on the server end and displaying HTML in the browser. It's a full-blown objecy-oriented language (I am a PHP developer). MySQL is a...
  8. J

    What shoul I choose between programming in perl and programming in .NET(C#)?

    Always take the money. The reason you will get paid less for .NET over a Perl job is that there aren't many good Perl programmers available as compared to .NET. I worked in a Perl environment for some time and while it's not as "easy" as some of the rapid development stuff you do in most .NET...
  9. J

    Iframe html code help?

    Place the iframe inside a div and use CSS to position the div on a specific part of the page.
  10. J

    Iframe html code help?

    Place the iframe inside a div and use CSS to position the div on a specific part of the page.
  11. J

    Iframe html code help?

    Place the iframe inside a div and use CSS to position the div on a specific part of the page.
  12. J

    Iframe html code help?

    Place the iframe inside a div and use CSS to position the div on a specific part of the page.
  13. J

    what are the dangers of mobile phone technology?

    There is no plausible long-term medical evidence that using a cell phone causes any damage to the brain. This theory is often put forth by people who believe high-tension towers and Sweet'N'Low cause cancer. I'll tell you the single biggest danger in cell phone use: Members of a specific...
  14. J

    Is there an HTML code for a text box that will send to your email?

    No. HTML can help provide a form that a user can fill out. You must have some kind of server-side script that will accept the form data, format it into an e-mail and send it. This is done on the web hosting server end, since client systems can't do this natively.
  15. J

    what are the dangers of mobile phone technology?

    There is no plausible long-term medical evidence that using a cell phone causes any damage to the brain. This theory is often put forth by people who believe high-tension towers and Sweet'N'Low cause cancer. I'll tell you the single biggest danger in cell phone use: Members of a specific...
  16. J

    Best place to learn PHP?

    There are tons of great PHP books on the market. You have a large selection. However, from experience, the best way to learn advanced stuff is to write lots of code.
  17. J

    PHP - convert comma separated values (not file) into array ?

    Use a foreach loop on the existing array: $newarray = array(); foreach ($favilst as $item) { array_push($newarray,$item)] } print_r($newarray); You should see the array listing the way you want it.
  18. J

    how to pOst different messages using php codes?

    You need a web server that supports PHP scripting. Then you need to know how to write the scripts to make them work on the server and to load in the browser when a user visits your site. That's a little too complicated to explain here.
  19. J

    i need a free PHP emulator so i can test php scripts on my computer without having to...

    If you have installed Apache and PHP on your loacl machine, there is no reason you can't run the scripts locally. You have something configured incorrectly or you are not loading the scripts correctly. You don't need a PHP emulator. PHP IS and emulator, of sorts. You can also load your scripts...
  20. J

    where can i find the source codes to various php and java Ready made projects?

    JFGI. There's tons of this stuff all over the web. Search for it.
Back
Top