Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 17 of 17
Search took 0.06 seconds.
Search: Posts Made By: goldpeng
Forum: PHP 03-16-2011, 06:54 AM
Replies: 3
Views: 624
Posted By goldpeng
have a try on this function which seems to work...

have a try on this function which seems to work for your problem. The requirement is you have to install ZipArchive module.

bool ZipArchive::extractTo ( string $destination [, mixed $entries ] )
Forum: PHP 02-18-2011, 11:44 PM
Replies: 10
Views: 2,562
Posted By goldpeng
Per my personal experience, the best way to...

Per my personal experience, the best way to create a sql query is to use sprintf function which is clear and easy to maintain.
Forum: PHP 02-18-2011, 11:14 PM
Replies: 3
Views: 368
Posted By goldpeng
first, open to your test HTML files in a web...

first, open to your test HTML files in a web browser;
then,Click the Refresh button in internet Explorer or Reload button in Netscape in your web browser to update the HTML page employing th changes...
Forum: PHP 02-18-2011, 10:54 PM
Replies: 13
Views: 1,173
Posted By goldpeng
Learn by example I would say. For example,...

Learn by example I would say.

For example, find a website such as Hotscripts.com. Download some interesting PHP scripts and programs from there and off you go! You can edit them, read through...
Forum: Site reviews 02-18-2011, 01:50 AM
Replies: 2
Views: 791
Posted By goldpeng
I think the site layout and colors are quite good!

I think the site layout and colors are quite good!
Forum: Site reviews 02-18-2011, 01:38 AM
Replies: 6
Views: 1,792
Posted By goldpeng
Content of some loose, messy comparison page

Content of some loose, messy comparison page
Forum: Site reviews 02-18-2011, 01:30 AM
Replies: 10
Views: 1,121
Posted By goldpeng
Your site is not attractive, I would like to add some suitable background image, and

Your site is not attractive, I would like to add some suitable background image, and the specific content may be better.
Forum: MySQL 12-10-2010, 01:54 PM
Replies: 2
Views: 1,488
Posted By goldpeng
Replication is often used to separate write...

Replication is often used to separate write operations away from read operations, the main target is for performance. While NDB is a distributed network database which is often used in case the data...
Forum: MySQL 12-10-2010, 01:40 PM
Replies: 3
Views: 1,921
Posted By goldpeng
PHP have PDF function series, you can have a...

PHP have PDF function series, you can have a search about 'PDF_begin_document' which is a clue of such pdf functions. With these functions, you can create pdf file from content you query out of mysql.
Forum: Site reviews 12-08-2010, 03:14 PM
Replies: 7
Views: 2,600
Posted By goldpeng
Please review my website, thanks

Hi, my website is a free pdf search engine coded by myself, please have a rate on it, thanks.

http://www.pdfgemi.com (http://www.codingforums.com)
Forum: Small projects (quick fixes and changes) 12-07-2010, 02:59 PM
Replies: 8
Views: 3,122
Posted By goldpeng
If the oppotunity is still open, please consider...

If the oppotunity is still open, please consider me. PM me please. Thanks.
Forum: PHP 12-07-2010, 02:44 PM
Replies: 3
Views: 881
Posted By goldpeng
Use 'fgets' function to read text file line by...

Use 'fgets' function to read text file line by line. Below is an example.

<?php
$handle = @fopen("/tmp/inputfile.txt", "r");
if ($handle) {
while (!feof($handle)) {
$buffer =...
Forum: Computer Programming 12-07-2010, 02:33 PM
Replies: 2
Views: 4,333
Posted By goldpeng
The last 2 lines should be changed from: if...

The last 2 lines should be changed from:

if (start < right) qsort(table,start,right);
if (left < finish) qsort(table,left,finish);

to:

if (start < (start+finish)/2)...
Forum: Computer Programming 12-06-2010, 02:26 PM
Replies: 3
Views: 2,757
Posted By goldpeng
Use this fomular: (new Random(100) % 2) * 2

Use this fomular:

(new Random(100) % 2) * 2
Forum: Computer Programming 12-06-2010, 02:13 PM
Replies: 5
Views: 2,831
Posted By goldpeng
Hey, cannot understand your code, :(

Hey, cannot understand your code, :(
Forum: Computer Programming 12-06-2010, 02:04 PM
Replies: 4
Views: 3,591
Posted By goldpeng
Operating system also controls data link layer...

Operating system also controls data link layer and physical layer in the 7-layer architecture of network, so it knows which process the packet is going to.
Forum: Computer Programming 12-06-2010, 01:52 PM
Replies: 4
Views: 2,784
Posted By goldpeng
What platform do you create this game on? Say...

What platform do you create this game on? Say windows game, flash game or web game?
Showing results 1 to 17 of 17

 
Forum Jump

All times are GMT +1. The time now is 06:56 AM.