Jump to content

elflacodepr

Members
  • Posts

    68
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

elflacodepr's Achievements

Member

Member (2/5)

0

Reputation

  1. All depends, as the file may be too big...it will take up 4 seconds for sure. As for information you provided I can see you are doing a SELECT command which retrieves 16k rows? If so I recommend to use the LIMIT function so you don't have that heavy load of rows coming up at once.
  2. You can simply make a query like this in phpMyAdmin: INSERT INTO disclaimer VALUES ('PUT YOUR DISCLAIMER MESSAGE HERE'); You will write your Disclaimer message inside the ' Change "disclaimer" to the desired table name. BUT...as you say the disclaimer may change you better use a PHP application to update them
  3. Hello, Make sure your Database has the correct Default Charset When you have time have a look in here: http://dev.mysql.com/doc/refman/5.0/en/charset.html
  4. Well well, speaking about PHP and MySQL is not the only thing to do here so here I go. I'm 21/single from Puerto Rico, I'm a hobbie/week-end coder. I love Databases! They are so easy to learn and work but yeah the process is long, but still like it. I firstly started coding HTML, then I knew about CSS and Javascript(which I didn't liked), after a couple time I retired from coding, then I heard about PHP and Databases (MySQL) I was fascinated how things work and what I can do with them, so I bought few books, read tutorials, downloaded scripts and so on...and here I am for 1 year now, trying to do my best to know more and help others with what I know My interests are to learn ASP and Python, which I'd like learn after I get good skills in PHP and MySQL.
  5. You mean you want to make your PHP script to read the values in MySQL then do something? I don't get much what you want to say... I speak Spanish too, so feel free to PM me if you need help.
  6. Hello all! I want to do a PHP proxy server for my website, but I have a little idea of what is needed, I know that cURL may be needed and other things which I don't remember now. I'd like to know everything about how to code them and make them safe, can anyone help me out? Also how do I make the Proxy work with this options, if I'm not asking too much I know there's more than sufficient proxies over the internet, but I prefer to trust one which I know how it's made Thanks!
  7. alright...so how I can do it? I mean...the scripting
  8. I want to read an HTML containing the news and yes, the file will be in same server
  9. Hello all, I'm doing a website using only client-side languages, I thought might be a good idea to use Javascript to read a file which contains News about the website...Is there any way I can do this? if so, can you give an example, I'm not good with JS
  10. I believe Google has few websites which have good tutorials, as far as I know, we don't have CMS tuts in PHPFreaks http://www.google.com.pr/search?hl=en&q=php+simple+cms&btnG=Google+Search
  11. Apart from filtering words, set a limit time for each post
  12. to retrieve your email you will need a query like this: <?php $sql = "SELECT * FROM emails ORDER BY subject ASC"; $query = mysql_query($sql); if (!$query) { // Handle error echo 'Query failed. SQL: ', $sql, '<br />Error # ', mysql_errno(), ' Error msg: ', mysql_error(); exit; } ?> Remember to change "emails" to your table name and "subject" to the column you want the query to be ordered.
  13. You need a working email system which will receive the info from PHP and send it to your 'Yahoo' email, because as plain as you are doing it will not work
  14. I believe you are not telling MySQL what column to select from 'products_description' The query must be like: (you can use an asterisk or other column name) SELECT * FROM products_description WHERE products_id =279 AND language_id =1 AND products_description LIKE '%Product Information is not available for this product yet. Sorry for any inconvenience, this should be updated shortly.'
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.