Search Results

Showing results 1 to 40 of 57
Search took 0.01 seconds.
Search: Posts Made By: bwest
Forum: Website Reviews May 30th, 2008
Replies: 1
Views: 702
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
Try This

http://za.php.net/manual/de/function.simplexml-load-file.php
Forum: PHP Oct 24th, 2005
Replies: 4
Views: 2,239
Posted By bwest
Try this class


class Email {

/* Global Variables */

//----------------------------------
var $message;
var $address_to;
Forum: PHP Oct 24th, 2005
Replies: 3
Views: 2,190
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
We all did the same learning curve
Forum: PHP Aug 9th, 2005
Replies: 21
Views: 4,599
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
www.sitesthatrock.com
Forum: IT Professionals' Lounge Jul 11th, 2005
Replies: 12
Views: 9,260
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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
Posted By bwest
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...
Showing results 1 to 40 of 57

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC