Argeaux
-
Blob display is truncated
A blob can only contain a certain amount of bytes. Maybe they could set it to a longblob and see if the whole photo gets uploaded. Or better yet, use the file system for storing photos and only put the link to the photo in the database.
-
php autoresponder problem
Also this looks weird: $_REQUEST ['email']; maybe you need to remove the spaces in the request like this: $_REQUEST['email'];
-
[Solved] Preg_replace Multiple Matches
i didnt test it, but a quick look at the php websites gives me this: http://nl.php.net/preg_match_all maybe you could try that.
-
Grab end or url (like domain.com/info) and use a var 4 index
put this in a .htaccess file: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 [L] and put this in the index.php: //url rewrite $url = strip_tags($_GET['…
-
What do you call php variables like this: $this->hello
You use this when you access a variable which is set in a class. These variables are called properties of a class. $this-> stands for a property in the current class you are working in. and hello for the name. So in the example above $this-&…
-
Nice & Simple Contact Form PHP problem
PHP support isnt turned on on your hosting plan. Contact your hoster about it!
-
.htaccess custom url with php
put a slash for every stylesheet, img and include. It should work then. \"includes/stylesheet.css\" \"/includes/stylesheet.css\"
-
Help needed kinda fast for defining a previous loop output
does this work? description) ?>]]>
-
Ethics and Templates
"TheDoc" said:One of the reasons why web sites cost so much is the amount of effort put into them to make them unique. Buying a template for a client is fine, especially when you have a very short deadline, but the client MUST BE AWARE th…
-
checking the contents of a variable on PHP
Well thats not gonna fix the spamproblem problem. Its better to use some sort of captcha or an other option. If you google for contact form spam there are lots of little things you can do.
-
Documentation for clients
The only thing i consider interesting is a manual how to use the site /cms / webstats. All the other documentation (uml, flowcharts) is more for the developer anyway. And since the project is already done these docs are not very interesting for th…
-
Web servers
A simple shared hosting account can be very cheap these days. What country are you from?
-
HTML emails and form tags
thats not gonna work properly. The best way is to link to an online form, maybe with an id attached so you can prefill some info on the form.
-
Codepal-My First Step in the world of Web Designing
yes its gone now.
-
Codepal-My First Step in the world of Web Designing
1680x1050 pixels
-
Codepal-My First Step in the world of Web Designing
i get a little bug in your design, looks like you have to make the left value higher: http://bayimg.com/image/canhkaabb.jpg
-
Screenshot software
http://www.faststone.org/FSCaptureDetail.htm its used to be free, but you can find serials pretty easily for it. It has build in paint mode.
-
Dynamic Paragraph (with PHP)?
you can use ajax to send the form in the background so the user still stays on the same page without a refresh. Or you could save the current page in a session, and after you submit the form you look in the session what page you were on and go ther…
-
li image replacement problem (solved)
You point to an image which doesn't exists. transparent url(navbtn.png) no-repeat scroll center top this image does not exist.
-
Drop Down Menu
how does you menu code looks like now? The one that works in firefox?
-
Coding types and Whys?
1) an id is supposed to be unique, so you use that for elements you are only going to use once in your code(like a wrapper or a header). A class can be used multiple times. 2) if you use xhtml you will have to close every tag. You close it by using…
-
IE 7 "Click to activate this control"
The "click to activate this control" only appears offline. When you upload the site to a server there is 99% chance it is gone and just works.
-
Position of text and input box inside form?
the pics are somehow not working for me. But have your tried to use margin-top: instead of padding-top:? I think it should work.
-
Forum Feeds & Notifications (phpBB v3)
Yes it is possible.
-
Vertical Alignment
havent tried it myself, but it looks like its working: http://d-graff.de/fricca/center.html
-
how to make text not visible in a tag
Its not a hack its just regular css. Anyway you only should replace words by images with the word in it (company name etc). If you use it on to many elements on your site it gets suspicious for google.
-
getting the "current" class for an a tag
You can use php to read the urlbar and check if the page you are on is on is the same as the one in the menu. Its kinda hard to explain how to do it, but if you google for php get you get some examples.