Recent content by PhonicUK

  1. P

    Can i use JDK In windows mobile and develop java applications ...?

    No, Windows Mobile does not support Java.
  2. P

    PHP / MySQL question?

    You put them in escaped quotes /"or in single quotes ' $insertcomment = "INSERT INTO comments (name,date,comment) values ('$name','$date','$comment')"; Also, make sure that $name $date and $comment have mysql_real_escape_string() run on them first to make sure that any data in them doesn't...
  3. P

    Differences between ASP.NET and PHP?

    The biggest difference is that ASP.Net is a lot faster than PHP. This is because .Net code is compiled as .Net CLR (Common-Language-Runtime) which is JIT compiled to native machine code. PHP is interpreted at runtime, making it slower. Also, PHP has no concept of 'code-behind' , which is where...
  4. P

    Differences between ASP.NET and PHP?

    The biggest difference is that ASP.Net is a lot faster than PHP. This is because .Net code is compiled as .Net CLR (Common-Language-Runtime) which is JIT compiled to native machine code. PHP is interpreted at runtime, making it slower. Also, PHP has no concept of 'code-behind' , which is where...
  5. P

    How can I avoid the hackers from getting my html codes?

    You can't. Anyone can right-click the page and select "View Source", or they can use the browser menu to do it without right clicking. There is nothing that can be done to stop someone copying the HTML code that you create.
Back
Top