30
2010
create table from other table
Tạo 1 table từ 1 table khác: Create Table new_table Select * From old_table
14
2010
export from mysql to excel in PHP
Export MySQL data records to an Excel file in one PHP file, simple and easily! This tutorial require 1 PHP file and 1 table of mySQL database. export_excel.php Database “tutorial” and table “name_list” with 2 fields: id(auto_increment), name(varchar, 50) and put some records about 20 – 30 records into this table. (directly by phpMyAdmin Source Code <? // Connect database. mysql_connect(“localhost”,””,””); mysql_select_db(“tutorial”); // Get data records from table. $result=mysql_query(“select * from name_list order by id [...]
4
2010
Mysql Select Data From One Table Update To Other
++++++++++++++ + Website_cv ++++++++++++++ + cv_id + status ++++++++++++++ +++++++++++++++ + Website_apply_job +++++++++++++++ + cv_id + status +++++++++++++++ => copy Status From website_cv to website_apply_job UPDATE website_apply_job JOIN website_cv ON website_cv.cv_id = website_apply_job.cv_id SET website_apply_job.STATUS = website_cv.STATUS;
Sponsors
Recent Posts
- Best Practices for Speeding Up Your Web Site
- Get List Site of Search Results Google with PHP
- How to get URI of feedburner
- LINUX CENTOS USEFUL COMMANDS FOR DUMMIES
- How to run php scripts using cronjob in linux – centos
- Fix Timeout Issues in CURL, PHP, and Apache
- Installing Memcached for PHP on 8.04 and newer
- Quy tắc viết htaccess trong PHP
Tag Cloud
Recent Comments
- Albert on Sử dụng các thuộc tính CSS3 cho IE với PIE
- Christian Louboutin Men Shoes on position: fixed in IE
- Boby Banh on 11 bài học để kiếm đựoc $100 đầu tiên từ việc viết Blog
- xu ly anh on 11 bài học để kiếm đựoc $100 đầu tiên từ việc viết Blog
- day photoshop tai nha * on 11 bài học để kiếm đựoc $100 đầu tiên từ việc viết Blog
- Electrical on Cấu hình domain ảo ở localhost
- jordan retro 11 on Cấu hình domain ảo ở localhost
- Carlos Parriott on A Modular Directory Structure Quickstart: Create Directory Structure
An article by admin