0
votes
OO PHP explanation For a braindead n00b
The best advice was from: xtofl.myopenid.com ^^^^
If you don't understand the purposes of patterns, your really not going to use objects to their fullest. You need to know why inheritence, …
2
votes
Easy way to export a SQL table without access to the server or phpMyADMIN
You might consider looking at: http://www.webyog.com
This is a great GUI admin tool, and they have a really neat HTTP-Tunneling feature (I'm not s …
2
votes
PHP Associative arrays to and from XML
Sounds like a job for SimpleXML.
I would suggest a slightly different XML structure..
And wonder why you need to convert from an array -> XML and back.. If you can modify the arr …
3
votes
How to get email and their attachments from PHP
I used to do a lot of this before, but I can't find the code, here's a scaled down version I found. It should put you on the correct path. I used to run this type of script from a cronjob. Sorry …
0
votes
How to check if a php script is still running
One possible solution is to have it listen on a port using the socket functions. You can check that the socket is still listening with a simple script. Even a monitoring service like pingdom coul …
2
votes
Best practices for withstanding launch day traffic burst
I would at least factor out all static content. Setup another vhost somewhere else and load all the graphics/css/js onto it. You can buy some extra cycles offloading the serving of that type of c …
7
votes
PHP simplexml problem
When you load the XML file, you'll need to handle the CDATA.. This example works:
<?php
$xml = simplexml_load_file('file.xml', NULL, LIBXML_NOCDATA);
$description = $xml->xpa …
0
votes
PHP: Use Pecl/Pear, or build my own systems?
What I do most times is I'll never use PEAR installed globally on a server. Versions can change and affect your application.. Instead I have a config file (in my case XML) that lists all the packa …
0
votes
Pros and cons of using one file for entire webpage?
Everything gatekiller mentioned + you also can't utilize late-binding.
…
1
vote
PHP: How to return information to a waiting script and continue processing
I think you'll need on the provider to send the data (be sure to flush), and then on the Requester, use fopen/fread to read an expected amount of data, so you can drop the connection to the Provide …
0
votes
Automatic newlines and formatting for blogging software
It's also important what your using for a comment editor. If your using a standard textbox then yes, nl2br is what your looking for. If your going a bit more advanced such as using a WYSIWYG edit …
0
votes
Create Word Document using PHP in Linux
There are 2 options to create quality word documents. Use COM to communicate with word (this requires a windows php server at least). Use openoffice and it's API to create and save documents in w …
0
votes
PHP object caching
Some hosting places may have APC compiled in.. That would allow you to store the objects in memory.
…
0
votes
PHP Optimization Tips
Use late-binding, that is only including specific files/classes when they are needed. Less code to parse.
…
0
votes
Securing DB and session-data on a PHP shared host
I would solve the problem with a infrasturcture change instead of a code one.
Consider upgrading to a VPS server. Nowdays you can get them very inexpensive. I've seen VPS's starting @ 10$/mo. …
