I consider myself a professional web developer.
@Nuvo: "Web developer" is a broad term, it doesn't necessarily mean you have to be a great designer. I, for example, am a terrible designer for the most part. I am a programmer, I leave the …
PHP is a recursive acronym for PHP: Hypertext Preprocessor (you missed the bit that made it recursive ;)). And yes, PHP used to stand for Personal Home Page.
There are two things you have to watch out for: SQL injection and then malicious code that will run on the client machine.
SQL injection occurs when you do not addslashes to data you are using in queries. For example, take this query for example:SE…
http://php.net/manual/en/function.mysql-list-tables.php
The result is just like any other mysql result, thus you can use any mysql_fetch_* functions with it.
Use it as a server :) You could network home computer together and use it as a central server, use it as a file server, or just put your localhost web server on it and use it for development.
That's what I'm going to do when I become not-poor :D
Yeah, a cache.
So if you have this data in a database, it would be useful to add another column like "content_parsed" that would save any text modifications you did. This would save you an extra query per page load (queries are a big time…
It'd be easiest to just query the database and get all of the words. Then just loop through and str_replace.
[php]$res = mysql_query("SELECT * FROM words");
while($data= mysql_fetch_array($res))
{
$link = "<a href=\"word.php…
You've been running DD this whole time with a leased? :eek: How long has DD been open?
You should try and scape up the cash for an owned, only $30/yr for renewed members area.
You better start porting your skins / any custom code over to vB3.5, to…
Could you elaborate on "desont seem to work"? Errors?
Make sure your paths are correct and you have write permissions in the destination directory (and if you are overwriting a file, you need write permissions on it as well).
(Quote)
That's not true, actually.
Any software that is going to be created for years to come (at least as many years as a newly purchased Mac will last a person) is going to be compiled into a "universal binary" that will work on both th…
I own an IPB license, on top of my vB license.
I think they are pretty neck and neck with features. Each has a couple things the other doesn't. IPB is missing out big time on the permission system though. They have a matrix of like 6 different perm…
I used to be a member at Teencoderz, but insistent squabbling between the staff member and, well, just about everyone made me leave.
But their project is not bad. Before they released a download, I was on their site trying crack it ;) I did report …
He want a textarea, not an input box ;)
Try this one. It's quite a bit more simple.
[html]<html>
<head>
<title>Test</title>
<script type="text/javascript">
function textarea_limit(txtarea, max, chr_id)
{
if(t…
You can still open a file for reading using fopen if it is on a remote server if allow_url_fopen is enabled in php.ini.
Take a look at the section on using remote files.
You wouldn't want to simply use a redirect, but you're right, they do offer a service.
What you're looking for is their IPN service (instant payment notification). In your profile, under Selling Preferences choose Instant Payment Notification Prefe…
I'm no cryptographer, but I read up on hashing algorithms when the SHA0/MD5 hashes were 'broken'.
I try to pop in every once in a while ;) I saw you on WMT and went, "oh yeah, haven't been there in a while." :D
The big thing a while ago was when someone finally "broke" the MD5 algorithm for creating the hash (weirdly enough, searching "MD5 broken" on google brings up me :D).
Since any hash algorithm is taking an undetermined length of …