Forum: Website Reviews May 30th, 2008 |
| Replies: 1 Views: 702 Hi Everyone!
I have been working with the makers of roommates.com now for a while to make a new site called BigOrb.com. Its kind of a hybrid between a social network and something like Wkipedia.... |
Forum: Web Development Job Offers Oct 3rd, 2006 |
| Replies: 0 Views: 1,406 Canidate must work on location in Scottsdale Arizona so non-local applicates please dont apply.
Candidates need to have experience in starting, developing and/or maintaining websites. We are... |
Forum: PHP Mar 27th, 2006 |
| Replies: 3 Views: 1,345 Well I dont think you need php for that. It might be overkill. Use JavaScript. When you use php or any other server-side language, whenever your user wants to make a calculation, the page will have... |
Forum: PHP Mar 25th, 2006 |
| Replies: 5 Views: 2,858 Well in any case, it sounds like your doing a large application. Your probably not going to find an already made or package that will be your perfect match (or tutorials) Do you know the basics of... |
Forum: PHP Mar 23rd, 2006 |
| Replies: 5 Views: 2,858 It sounds like you want to make another MySpace.com type site. This is a LOT of work.
I program in strait HTML and PHP with no code generators and I have recently made what you and Myspace... |
Forum: PHP Mar 23rd, 2006 |
| Replies: 1 Views: 4,303 Your right, the problem is -> recalc_onclick('p1B1')
The reason is because you are using single 'quotes' as opposed to "double" to encasulate strings (which is ok). But when you say that statement... |
Forum: PHP Feb 23rd, 2006 |
| Replies: 6 Views: 1,394 Thanks cscgal, I saw that bit of html in your forum when I looked at the source I didnt know what it was for but good to know |
Forum: PHP Feb 23rd, 2006 |
| Replies: 6 Views: 1,394 Well after doing more research. (Actually I did a view source on this page) to see how daniweb does it and they just replace the hard return characters with <br> tags. Thanks anyways |
Forum: PHP Feb 23rd, 2006 |
| Replies: 6 Views: 1,394 Ok, I am putting my users text onto the screen. I need it to represent what they typed so I use the <pre></pre> tags to preserve the hard returns and other white space. The problem comes when they... |
Forum: PHP Jan 26th, 2006 |
| Replies: 15 Views: 13,863 Here's how header() works
You can put header("Location: whateverpage.php"); anywhere you want. Top/bottom of script doesnt matter. What is important is to put exit(); right after. The reason being... |
Forum: PHP Nov 2nd, 2005 |
| Replies: 1 Views: 7,665 Try This
http://za.php.net/manual/de/function.simplexml-load-file.php |
Forum: PHP Oct 24th, 2005 |
| Replies: 4 Views: 2,239 Try this class
class Email {
/* Global Variables */
//----------------------------------
var $message;
var $address_to; |
Forum: PHP Oct 24th, 2005 |
| Replies: 3 Views: 2,190 I think you should use cookies. I also think you should look at this script. The top of this page has a great php login with session handling and cookies for automatic re-login. I have the link here... |
Forum: PHP Oct 24th, 2005 |
| Replies: 2 Views: 1,535 What exactly do you mean by your own mail program? Something like a free yahoo or hotmail?
-Brad |
Forum: PHP Oct 20th, 2005 |
| Replies: 4 Views: 5,135 While I would agree with the regular expressions. It is the best and proper way. Regular expressions can be hard to make.
An alternative would be to have an array like this
$my_nums =... |
Forum: PHP Oct 18th, 2005 |
| Replies: 1 Views: 5,387 I dont know why, but maybe I can help. I at least know why there are three slashes!
Im sure you know that a back slash makes the next character literal.
The best example is a string that looks... |
Forum: PHP Oct 5th, 2005 |
| Replies: 5 Views: 1,672 Your going to have to give more detail but I dont think sessions are dependant on the php version or operating system. |
Forum: PHP Aug 23rd, 2005 |
| Replies: 21 Views: 4,599 I would start with the online tutorials, they're more practical and application orientated. Books are good too but every programming book ALWAYS uses 2/3ths of the book to teach about variables,... |
Forum: PHP Aug 23rd, 2005 |
| Replies: 4 Views: 2,052 So are your employees using a form that you made? I hope their not allowed to make the query theirselves.
So if your using a form, you'll just have to format the string to be exactly what the... |
Forum: PHP Aug 20th, 2005 |
| Replies: 4 Views: 2,052 Do you have phpMyAdmin? If so I would make an insert with that and make sure you use your single or double quotes, which ever you want. - And see how it does the job. It will make the insert and show... |
Forum: PHP Aug 16th, 2005 |
| Replies: 21 Views: 4,599 We all did the same learning curve |
Forum: PHP Aug 9th, 2005 |
| Replies: 21 Views: 4,599 A more standard structure would be
<?php
$id = $_GET['id'];
switch($id) {
case "wow":
include('wow.htm');
break;
case "tutorials": |
Forum: PHP Aug 2nd, 2005 |
| Replies: 2 Views: 4,993 Ya I actually tried that and I have a test word doc with about five words. When opened it showed about 1000 characters. I was hoping there was a way to get all the formatting removed |
Forum: PHP Aug 1st, 2005 |
| Replies: 2 Views: 4,993 Well I tried finding this information all over and all I could find were people trying to edit Word docs with php. I, rather, am trying to just load them into a variable to search through them.
... |
Forum: PHP Jul 29th, 2005 |
| Replies: 0 Views: 4,706 Have you ever tried programming one of these: Showing Page 1 of 17 Go To: 1 | 2| 3….. Well I have written a nifty class that will take care of it for you. You can even change the formatting outside... |
Forum: PHP Jul 28th, 2005 |
| Replies: 14 Views: 30,346 There really is almost all the code here in this thread that you would need. You just will need to implement your html and do the query. Besides that, the stuff above will be good for most of your... |
Forum: PHP Jul 28th, 2005 |
| Replies: 21 Views: 4,599 Well I still might not understand what you need. But are you using FrontPage or Dreamweaver. They have photo gallery tools that you can use. As far as mysql goes, you would only need that in rare... |
Forum: PHP Jul 28th, 2005 |
| Replies: 14 Views: 30,346 The javascript typically goes between the <head> tags at the top of the page.
Here is a basic db connection class
<?
class MyOps {
/* Global Variables */
var $conn = "localhost"; |
Forum: PHP Jul 27th, 2005 |
| Replies: 21 Views: 4,599 So you only need for a photo gallery? Something that will allow you to simply have photos in a directory and they will automatically appear on the appropriate page? |
Forum: PHP Jul 27th, 2005 |
| Replies: 21 Views: 4,599 Hi Class
I will be able to help you but I need to know some things first.
1. Are you already familiar with making standard HTML web pages
2. What do you need the php programming language for... |
Forum: PHP Jul 27th, 2005 |
| Replies: 14 Views: 30,346 Hi Lawfour
Ok the first thing is I think your ready to move on to hand-writing your php instead of using a tool to do it for you. The people in this form are great and we can answer almost any... |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2005 |
| Replies: 7 Views: 5,960 Im not sure what you mean. Where is enable, IE options? or in HTML? expalin a little more |
Forum: Site Layout and Usability Jul 16th, 2005 |
| Replies: 20 Views: 6,431 |
Forum: IT Professionals' Lounge Jul 11th, 2005 |
| Replies: 12 Views: 9,260 While Java is an excellent language, (My formal schooling was 100% java) I will only program web-apps in php. Its faster to learn, easier to find resources for, and can be just as "clean" as java if... |
Forum: JavaScript / DHTML / AJAX Jul 11th, 2005 |
| Replies: 12 Views: 19,717 While I would agree with Troy, if you still need to do it with iframes, this might work. I havent tried it out with your specific problem though.
In the past I have had special situations where I... |
Forum: JavaScript / DHTML / AJAX Jul 11th, 2005 |
| Replies: 7 Views: 5,960 As far as I know there is no way to see if an email is a valid one. (otherwise spammers would be in heaven). But there is a technique used to make sure somebody is using a real email. I dont know... |
Forum: MySQL Jul 8th, 2005 |
| Replies: 5 Views: 2,640 I dont suppose there's anyway to change this? My client may have 30 rows max. (Articles for their clients) This may make searching frustrating when keywords dont get anything.
-B |
Forum: MySQL Jul 7th, 2005 |
| Replies: 5 Views: 2,640 Here is the code from www.mysql.com. Notice they do have more than five records.
mysql> CREATE TABLE articles (
-> id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
-> title... |
Forum: MySQL Jul 6th, 2005 |
| Replies: 5 Views: 2,640 I am pretty good with mysql but I haven’t done much full text searching. I have this problem though with getting results. I learned how to do the fulltext searching at the mysql.com site. I plugged... |
Forum: Site Layout and Usability Jul 5th, 2005 |
| Replies: 75 Views: 45,387 Can I just say Im not a big fan of any slicing tool. Does a program really have the logic to layout your site based on the rectangles you draw around parts of your graphic. I know that there is much... |