1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Likes Received By mwasif

  1. postcd liked mwasif's post in the thread ibdata file growing too fast.

    I don't think Enterprise version solves this problem either. But you can slow down this by forcing MySQL to create each InnoDB table to...

    May 19, 2014
  2. Rukbat liked mwasif's post in the thread MySql - banned by host.

    In my opinion 4images is the culprit. You need to use some caching for this script.

    Feb 25, 2012
  3. kgrad liked mwasif's post in the thread Quick .htaccess query, rep+ for answering.

    Put this on olddomain.com .htaccess RewriteEngine On RewriteRule ^$ http://newdomain.com/page1.html [R=301,L] RewriteRule ^page1\.html$...

    Feb 8, 2011
  4. imranamen6 liked mwasif's post in the thread How to connect DB through Software?.

    To connect to mysql you can use several desktop softwares e.g. HeidiSQL. For other options visit the MySQL GUIs list.

    Dec 14, 2010
  5. Junije liked mwasif's post in the thread How to transfer data from one table to another with different structure.

    Use INSERT INTO....SELECT e.g. INSERT INTO new_table (column1, column2, column3) SELECT col1, col2, col3 FROM old_table

    Aug 21, 2010
  6. Breakpoint liked mwasif's post in the thread Cannot update record when inserting to datetime.

    release is a MySQL reserve word. It is not a good practice to use reserve words for your db name, table and column names. Apply back...

    Jan 18, 2010
  7. mikemason liked mwasif's post in the thread trying to echo last value in row's array.

    If SendMsgs contains comma separated values then you can get the last value by replacing echo "<td>" . $row->SentMsgs . "</td>"; with...

    Oct 6, 2009
  8. lui2603 liked mwasif's post in the thread MySQL to select friends/contact list??.

    Use JOIN SELECT users.username FROM users INNER JOIN contacts ON users.user_id = contacts.account_id WHERE contacts.account_id='$userid'

    Sep 17, 2008
  9. sg552 liked mwasif's post in the thread Update database to increment by one.

    use this one, never use single quotes around column names $query = "UPDATE downloads SET count = count +1 WHERE ip =...

    Sep 10, 2008
  10. Masterful liked mwasif's post in the thread Quick Question About the DATE Column Type..

    You can use MySQL's DATE_FORMAT() function show this type of output. e.g. SELECT DATE_FORMAT(date_column, '%d %M, %Y') FROM table

    Sep 6, 2008
  11. mokimofiki liked mwasif's post in the thread Multiplying variables that contain numbers?.

    Try this if(isset($_SESSION['sppkgspecial'])) { $row = mysql_fetch_array(mysql_query("SELECT price FROM sppkg WHERE...

    Aug 28, 2008
  12. James WP liked mwasif's post in the thread Sessions across subdomains.

    Can you try this before session_start()? ini_set ( 'session.cookie_domain', '.mysite.com' );

    Aug 9, 2008
  13. Astroman liked mwasif's post in the thread Mysql make all uppercase letters lowercase in a column.

    This query will work only whenever you select the name, but it will update it in the table. You can do as wootty suggested or use...

    Aug 2, 2008
  14. rohan_shenoy liked mwasif's post in the thread Need very big help[FAST PLEASE].

    Run the following command where you want to create MySQL user GRANT ALL PRIVILEGES ON database_name.* TO 'mysqluser'@'IP from where...

    Aug 2, 2008
  15. SeoVeteran33 liked mwasif's post in the thread Is it OK to Connect To Multiple MySql Databases?.

    If your page does not take much time to load, then it is ok to keep the connections open.

    Jul 2, 2008
  16. kentuckyslone liked mwasif's post in the thread Strange Problem With Name Servers at GoDaddy.

    Last week I have changed one of my sites DNS and it took 2 days to properly resolve outside US. My domain is with Godaddy as well. Most...

    Jun 25, 2008
  17. Teunel liked mwasif's post in the thread Switch content of 2 rows?.

    It is possible by the following procedure (make sure you backup your data before performing these steps or first test this on your test...

    Jun 1, 2008
  18. vgal liked mwasif's post in the thread Database Dummy Needs Help Installing WP :(.

    Let me know I can help you.

    May 3, 2008
  19. jasonsc liked mwasif's post in the thread How to dump all mysql datbases one by one.

    Use mysqldump dbname > sql_file.sql

    Apr 22, 2008