I'm from the US. I can't think of any "homework" for PDO's...you could try reading the documentation <http://php.net/manual/en/book.pdo.php>, but that's not very helpful for a first introduction. I guess the first step would be to get some information on your webserver environment. Create a php script with this:
<?php phpinfo(); ?> and then go to that page in a browser; you should get a bunch of information about your PHP installation. Search for information about PDO and any associated modules or libraries (I think the PDO mysql library is called pdo_mysql_lib, but I could be mistaken). If PDO is enabled and the PDO mysql library is enabled, then you don't have to change the PHP configuration. If one or both is missing, you will have to look up how to enable them in the PHP configuration for the version of PHP you are using (the PHP version will be displayed on this page as well). I don't *think* there are any automated security auditing tools for websites. There are companies that will perform security audits, but my understanding is that this is usually expensive. If you are not hosting sensitive data (financial information, personally identifiable information [names, addresses, identification numbers, that kind of stuff], medical records, or other sensitive/confidential information), it probably isn't worth paying for an audit. If you are hosting such data, then I highly suggest employing the services of a web security expert to help design your website from the ground up. Node js is for doing your server-side scripting in javascript instead of other languages like PHP. I've never used it, so I can't comment on how good it is, but in general, I've heard that it is a decent system. It is convenient for programmers who are already experts in javascript but new to the other server-side scripting languages. On Wednesday, December 12, 2012 12:14:02 AM UTC-5, Chrystopher Medina wrote: > > > definitely im going to credit u on the page. > and where are u from my friend..... > > well im gonna start to read about mysql inyection and pdo´s ... and yes. > help me to rewrite the php to use pdo´s instead of mysql_query. if its > possible please letme some homework to start with this .. and if u know > some tool in order to audit my website would be great.............. thanks > a lot again ..... do u have facebook. ...... another thing.... could you > tell me what is node js ... is a tecnology to program websites or is just a > webserver. > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/5Z-aoji9CJIJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
