Mon Mar 23, 2009 1:59 pm
Replies: 2
Views: 2837
What you want is the php function imagefttext()

http://us3.php.net/manual/en/function.imagefttext.php

Fri Jan 23, 2009 2:23 pm
Replies: 8
Views: 8295
load data local infile should work the local key word means the file is local to the script (on the web server not the db server). This is a very efficient way to import from CSV file. I've used it ...

Sat Jan 10, 2009 8:37 pm
Replies: 7
Views: 5310
Hey John,

Once you have mastered getting information in and out of one table at a time that next logical step is to learn joins.

The d is and alias for the table name. When doing joins you hav ...

Fri Jan 09, 2009 10:21 pm
Replies: 8
Views: 8295
PhpMyAdmin may not be the best way to import a data. While the application itself has been modified you still have the limitations of PHP on the hosting server. If you PM me your domain name I can l ...

Fri Jan 09, 2009 10:05 pm
Replies: 1
Views: 5365
I've run into this problem myself before. MySql is particular and will not except the data if it is not formatted just so.

You are correct the proper format is YYYY-MM-DD and so the only solutio ...

Fri Jan 09, 2009 8:38 pm
Replies: 7
Views: 5310
Lets take a look at what your code says you're doing on the DetailsTips.cfm page. The sql query states

SELECT *
FROM dailytips
WHERE record_id = <cfqueryparam value="#URL.record_id#" ...

Thu Dec 11, 2008 9:05 pm
Replies: 1
Views: 3303
Clicking on the gray bar that says "Local Files" or Remote Site" re-orders the files.

Thu Dec 11, 2008 9:02 pm
Replies: 3
Views: 4907
Joomla is probably your best bet.

Fri Sep 12, 2008 6:19 pm
Replies: 4
Views: 7094
Also, move_uploaded_file() will set the file permissions to 0600. If you plan on letting users access files directly (as opposed to through a redirect script), then you'll want to set the permissions ...

Tue Jun 10, 2008 1:42 pm
Replies: 15
Views: 19801
PHP has been around for a long time (1995). Much longer the ASP.NET (2002). It has proven the test of time and is widely used both in the enterprise and entry level markets. The fact that PHP is so w ...

Wed May 28, 2008 6:04 pm
Replies: 4
Views: 6409
This is a really simply tutorial so you can integrate your php with ajax. The example code utilizes a universal function called get. You can pass the get function the php file name to execute, the di ...

Mon May 26, 2008 3:06 pm
Replies: 3
Views: 9438
That is correct. phpMyAdmin will not allow multiple sql queries to run using the sql query window. You could use the GUI to update more than one row in phpMyAdmin or;

What you are attempting to do ...

Sun May 25, 2008 2:25 pm
Replies: 5
Views: 8282
Here is an example of using tables. This is the output from photoshop after slicing up an image. Below it will be the same thing after I converted to tableless design.

<table id="Table_01 ...

Wed May 14, 2008 3:32 pm
Replies: 5
Views: 8282
Tableless design is something that every designer should know how to do. I've vowed to create all apps without the use a single table and have learned a lot good xhtml / css along the way. The most v ...

Wed May 14, 2008 2:52 pm
Replies: 10
Views: 11110
The easiest way to fix this will be to pass your post values through addslashes() before they get to mysql.



$name = addslashes($_POST['name']);
$description = addslashes( ...
Page 1 of 2
All times are GMT