0
votes
Which PHP open source shopping cart solutions have features that benefit me as the web developer?
I would second the Magento suggestion. It has a modern code base and is designed with extensibility in mind. It also has multi-site, multi-language capabilities engineered in from the start. It's o …
0
votes
php $_GET sort problem
To get a natural sort by key:
function knatsort(&$karr){
$kkeyarr = array_keys($karr);
natsort($kkeyarr);
$ksortedarr = array();
foreach($kkeyarr as $kcurrkey){
…
0
votes
Should I mysql_real_escape_string all the cookies I get from the user to avoid mysql injection in php?
Yegor, you can store the hash when a user account is created/updated, then whenever a login is initiated, you hash the data posted to the server and compare against what was stored in the database …
0
votes
What are the bare basics you put down when you start a new PHP project?
/
config.php
index.php
home.php
header.php
footer.php
/images
/scripts
foo.js
jquery_packed.js
/styles
/yui
screen.foo.css
print.foo.css
ie.screen.css
/foo
foo.ph …
0
votes
prevent mime faking on php uploads
Don't serve the file directly. Keep uploads in a no public access location. Read from file, buffer for output to allow downloading.
Here's the basic idea:
function ReadAndOu …
1
vote
Comprehensive server-side validation
This Question/Answer has some good responses that you're looking for
(PHP-oriented, but then again you didn't specify language/platform and some of it applies beyond the php world): …
2
votes
Php code formatter / beautifier and php beautificaton in general
Here's a php code beautifier (PHP of course) class:
http://www.codeassembly.com/A-php-code-beautifier-th …
0
votes
Creating a file progress bar in PHP
"Old school", but a PHP + Perl technique: http://www.raditha.com/php/progress.php
…
1
vote
What’s the best way to search a MySQL database with PHP?
Paul Dixon's code example gets the main idea across well for the LIKE-based approach.
I'll just add this usability idea: Provide an (AND | OR) radio button set in the interface, default to …
2
votes
Pass a PHP string to a Javascript variable (including escaping newlines)
Explanation and online testing of escaping client-side and server-side (Javascript / PHP):
JavaScrip …
0
votes
Pass a PHP string to a Javascript variable (including escaping newlines)
function escapeJavaScriptText($string)
{
return str_replace("\n", '\n', str_replace('"', '\"', addcslashes(str_replace("\r", '', (string)$string), "\0..\37'\\")));
}
…
5
votes
Print out post values
print_r() / var_dump() are simple and gets the job done.
If you want a styled/dynamic option check out Krumo:
…
2
votes
Suggestions for a Web application for a group project.
Idea: Develop a "group project contribution tracking/reporting" application. I suggest you beta test it on a handful of users - maybe five (5) or so.
Could include factors such as: Lines …
0
votes
How to resize all images in a block of HTML to a specific width and cache the results
SEE
http://stackoverflow.com/questions/140734/best-way-to-cache-resized-images-using-php-and …
2
votes
WordPress: I got rid of the second “home” page, but it’s not good enough
Setting a static page as the front page doens't highlight the menu link, which is at the heart of the question.
So, you could server-side customize (hack) the wp_list_pages function, but he …
