Forum: PHP Jan 8th, 2009 |
| Replies: 4 Views: 550 I think you're better off downloading the php manual (http://www.php.net/download-docs.php) --- then treating us to a cookie-fest with the money you saved from the book. :)
But seriously, the... |
Forum: PHP Jan 4th, 2009 |
| Replies: 3 Views: 456 Hallu again rajeesh! SkyVValker had the same problem about limiting the display. His question was already answered here (http://www.daniweb.com/forums/thread165863.html) by DiGSGRL. :) |
Forum: PHP Jan 2nd, 2009 |
| Replies: 12 Views: 5,506 Cool. (Even if I didn't ask the question)
I always wondered how the check(ed)boxes are passed to the table.
But is it bad practice to create a separate table that holds the checked values for... |
Forum: PHP Jan 2nd, 2009 |
| Replies: 4 Views: 391 You might also want to download the PHP documentation in .chm format (http://www.php.net/docs-echm.php) for quick reference.
And install a local 'practice' server using xampp... |
Forum: PHP Jan 2nd, 2009 |
| Replies: 7 Views: 1,056 Well, if Dreamweaver can do that, you don't need any code at all. =p
Here is a set of tutorials (http://www.nebulex.com/index.php?option=com_content&view=article&id=6&Itemid=62) from connecting to... |
Forum: PHP Jan 2nd, 2009 |
| Replies: 3 Views: 448 Use a dynamic and static salt combination?
Article from codeigniter -- but the concept is the same. (http://codeigniter.com/blog/P5/) |
Forum: PHP Jan 2nd, 2009 |
| Replies: 7 Views: 1,056 Have you tried checking the post here? (http://www.daniweb.com/forums/thread97183.html)
*meh... I don't have dreamweaver*
The code in there can be used for any program. I think dreamweaver... |
Forum: PHP Jan 1st, 2009 |
| Replies: 7 Views: 1,056 Surprisingly, there is a very helpful thread in the HTML/CSS section (http://www.daniweb.com/forums/thread97183.html) on how to make a sign-up and login/logout system using PHP.
Try the 2nd or 3rd... |
Forum: PHP Dec 31st, 2008 |
| Replies: 6 Views: 548 ... I second the motion!
Installing php and apache separately might not be convenient for beginners. =) |
Forum: PHP Dec 30th, 2008 |
| Replies: 16 Views: 1,961 :D (you're welcome... and my apologies for the pasikot-sikot help) |
Forum: PHP Dec 30th, 2008 |
| Replies: 6 Views: 548 How did you install PHP? Did you download a package (like XAMPP or EasyPHP) or did you just download the latest version of PHP? |
Forum: PHP Dec 30th, 2008 |
| Replies: 6 Views: 961 Try this (I removed the size="1" attribute in your select tag).
<form>
<table border="0" width="100%">
<tr>
<td align="right" width="60%">
<select name="cmbcategory" onChange="submit();">... |
Forum: PHP Dec 30th, 2008 |
| Replies: 1 Views: 284 Can you show us your code so far? And are you working with PHP and a database or are you just practicing with PHP? |
Forum: PHP Dec 30th, 2008 |
| Replies: 16 Views: 1,961 Sadly, no. I just tried right now...
The only Javascript events that apply to the option elements are
1. onFocus (you have to click on it --- since your option tags open the page upon clicking,... |
Forum: PHP Dec 30th, 2008 |
| Replies: 16 Views: 1,961 Eep! Are you working with that tutorial or looking for something else? The link I gave you is also a tutorial for that effect. |
Forum: PHP Dec 30th, 2008 |
| Replies: 16 Views: 1,961 hehe... ok lang. =)
Link of the selected list...?
Do you want something like this (http://meyerweb.com/eric/css/edge/popups/demo.html)? (Hover on the left menu.)
The tutorial for doing that... |
Forum: PHP Dec 30th, 2008 |
| Replies: 16 Views: 1,961 Try adding a title attribute to each option...
<select>
<option title="http://www.google.com">Google</option>
<option title="http://philippineonlinedirectory.com/aklan">Aklan</option>
</select>... |
Forum: PHP Dec 30th, 2008 |
| Replies: 5 Views: 483 Did you mean the images at the top?
Looking at the site, it seems that joystiq didn't do this using javascript.. *snoops at code*
AHA! This was done using CSS *falls off chair in shock*. I... |
Forum: PHP Dec 29th, 2008 |
| Replies: 6 Views: 961 Try:
<form>
<table border="0" width="100%">
<tr>
<td align="right" width="60%">
<select name="cmbcategory" size="1" onChange="submit();">
<option value="0">Select <?php if... |
Forum: PHP Dec 29th, 2008 |
| Replies: 4 Views: 364 You don't have to reopen the php tags in a heredoc (heredoc is the EOT thing you're using).
So if $ad_row['url'] contains the url, you can just include it as you would any other variable in php:
... |
Forum: PHP Dec 29th, 2008 |
| Replies: 3 Views: 404 I just googled this:
http://www.gridinsoft.com/protect.php
But basically what it does is just 'muck up' or confuse the code to make it hard for others to edit the source. =( The download is just... |
Forum: PHP Dec 29th, 2008 |
| Replies: 16 Views: 1,961 Eep. I think that javascript is the only way to go.
PHP is (I don't know the formal term) but it only works when you 'submit' or 'send' the data. From experience, it's Javascript that handles... |
Forum: PHP Dec 29th, 2008 |
| Replies: 3 Views: 404 Hide it in a sea of confusing code... hehe
But the only way I can think of is to scare them off with legal terms in your license or readme.txt file... because I think that as long as they can... |
Forum: PHP Feb 14th, 2007 |
| Replies: 3 Views: 1,511 OK. Thanks, I think this is the one I need. :cheesy: |
Forum: PHP Feb 13th, 2007 |
| Replies: 3 Views: 1,511 I'm using an html form to add to a list, specifically a flatfile database called demo3.txt. The add.php file is this:
<?php
$name = $_POST['name'];
$nickname = $_POST['nickname'];
$motto... |