Search found 13 matches
- Sat Apr 21, 2007 1:24 pm
- Forum: Databases
- Topic: Getting result from multiple table selection
- Replies: 2
- Views: 735
That still gives the problem of having to name each column explicitly, which means I have to keep track of all queries like this linking to these tables and change them whenever the fields in the table change. My feeling about that is that I shouldn't have to add on another layer of complexity to th...
- Sat Apr 21, 2007 12:21 pm
- Forum: Databases
- Topic: Getting result from multiple table selection
- Replies: 2
- Views: 735
Getting result from multiple table selection
I have a MySQL database and I want to do something like this: I have a table of objects (I'll call it "obj") and I want to search for objects matching a particular where clause and which are linked to users, and then get those objects and users, so: "SELECT users.*,obj.* FROM users, o...
- Mon Feb 12, 2007 10:33 pm
- Forum: PHP - Code
- Topic: cURL vs file_get_contents
- Replies: 3
- Views: 948
- Mon Feb 12, 2007 5:40 pm
- Forum: PHP - Code
- Topic: cURL vs file_get_contents
- Replies: 3
- Views: 948
- Mon Feb 12, 2007 4:34 pm
- Forum: PHP - Code
- Topic: cURL vs file_get_contents
- Replies: 3
- Views: 948
cURL vs file_get_contents
feyd | Please use , and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] I've been...
- Tue Jan 09, 2007 12:55 am
- Forum: PHP - Code
- Topic: Throwing error when calling a member function on a null var
- Replies: 5
- Views: 1071
The example posted was from the command line yes, however it's also possible to see it on a web page. You simply have to have error_reporting and display_errors set correct before the script is loaded. On Apache servers this can often be set via .htaccess if necessary. Thanks; I should have figured...
- Tue Jan 09, 2007 12:43 am
- Forum: PHP - Code
- Topic: Throwing error when calling a member function on a null var
- Replies: 5
- Views: 1071
- Tue Jan 09, 2007 12:35 am
- Forum: PHP - Code
- Topic: Throwing error when calling a member function on a null var
- Replies: 5
- Views: 1071
Throwing error when calling a member function on a null var
I've been having problems lately with calling member functions on variables whose values may not have changed from null yet due to other bugs. I'm running PHP 5.1.2 and this is really problematic because it doesn't throw any error, it just stops execution and prints a blank page. Three closely relat...
- Fri Apr 28, 2006 9:47 am
- Forum: PHPGD.com
- Topic: PNG image transparency in PHP
- Replies: 8
- Views: 10089
- Thu Apr 27, 2006 12:54 pm
- Forum: PHPGD.com
- Topic: PNG image transparency in PHP
- Replies: 8
- Views: 10089
Thank you. I think that'll be adequate for my purposes for now, and certainly I needed to get that code. However, I think what I was really asking was if there is a way to have antialiasing affect the alpha component, like Java's image functionality does. The [url =http://www.php.net/manual/en/funct...
- Wed Apr 26, 2006 7:54 pm
- Forum: PHPGD.com
- Topic: PNG image transparency in PHP
- Replies: 8
- Views: 10089
- Wed Apr 26, 2006 7:33 pm
- Forum: PHPGD.com
- Topic: PNG image transparency in PHP
- Replies: 8
- Views: 10089
- Wed Apr 26, 2006 4:09 pm
- Forum: PHPGD.com
- Topic: PNG image transparency in PHP
- Replies: 8
- Views: 10089
PNG image transparency in PHP
I need to dynamically generate some PNG images for my site. They're pretty simple--a transparent background with some lines, such as this image: http://www.austinmap.org/tiles/tiles_plus/plus_15_13489_7487.png I have a Java program that does this, but my hosting company recently upgraded their PHP v...