User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 403,083 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,084 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 56
Search took 0.01 seconds.
Posts Made By: bwest
Forum: Website Reviews May 30th, 2008
Replies: 1
Views: 434
Posted By bwest
BigOrb.com

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. The...
Forum: Web Development Job Offers Oct 3rd, 2006
Replies: 0
Views: 1,062
Posted By bwest
Arizona: Website Developer

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 looking...
Forum: PHP Mar 27th, 2006
Replies: 3
Views: 1,031
Posted By bwest
Re: PhP scripting help please

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: 1,966
Posted By bwest
Re: I want to create a community script

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: 1,966
Posted By bwest
Re: I want to create a community script

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 require....
Forum: PHP Mar 23rd, 2006
Replies: 1
Views: 2,056
Posted By bwest
Re: PHP with Javascript Parsing

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,095
Posted By bwest
Re: Need Advise On Clever Algorithm

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,095
Posted By bwest
Re: Need Advise On Clever Algorithm

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 22nd, 2006
Replies: 6
Views: 1,095
Posted By bwest
Need Advise On Clever Algorithm

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: 8
Views: 6,951
Posted By bwest
Re: Warning: Cannot modify header information

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: 4,816
Posted By bwest
Re: Cannot load XML file.

Try This

http://za.php.net/manual/de/function.simplexml-load-file.php
Forum: PHP Oct 24th, 2005
Replies: 4
Views: 1,721
Posted By bwest
Re: emails sent to bulk folder....(Is this a php problem?)

Try this class


class Email {

/* Global Variables */

//----------------------------------
var $message;
var $address_to;
Forum: PHP Oct 24th, 2005
Replies: 3
Views: 1,675
Posted By bwest
Re: Php With Sessions Aah

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,192
Posted By bwest
Re: Mail Client

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: 3,386
Posted By bwest
Re: how to verify the string with all numbers?

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: 3,723
Posted By bwest
Re: autogenerated mysql query with javascript

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 like...
Forum: PHP Oct 5th, 2005
Replies: 5
Views: 1,367
Posted By bwest
Re: session

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: 3,467
Posted By bwest
Re: Dummy asks: how can i?

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: 1,593
Posted By bwest
Re: Sending quotes to my database

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: 1,593
Posted By bwest
Re: Sending quotes to my database

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: 3,467
Posted By bwest
Re: Dummy asks: how can i?

We all did the same learning curve
Forum: PHP Aug 9th, 2005
Replies: 21
Views: 3,467
Posted By bwest
Re: Dummy asks: how can i?

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: 3,038
Posted By bwest
Re: PHP and MS Word Docs

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: 3,038
Posted By bwest
PHP and MS Word Docs

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.

The...
Forum: PHP Jul 28th, 2005
Replies: 14
Views: 20,195
Posted By bwest
Re: php drop down menu to search multiple sql tables

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: 3,467
Posted By bwest
Re: Dummy asks: how can i?

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 27th, 2005
Replies: 14
Views: 20,195
Posted By bwest
Re: php drop down menu to search multiple sql tables

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: 3,467
Posted By bwest
Re: Dummy asks: how can i?

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: 3,467
Posted By bwest
Re: Dummy asks: how can i?

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: 20,195
Posted By bwest
Re: php drop down menu to search multiple sql tables

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: 4,580
Posted By bwest
Re: JavaScript -- Validating an email address

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: 5,199
Posted By bwest
Re: WOW sites

www.sitesthatrock.com
Forum: IT Technologies and Trends Jul 11th, 2005
Replies: 12
Views: 6,002
Posted By bwest
Re: Java or PHP?

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: 13,068
Posted By bwest
Re: Dynamicallu Resizeing IFRAME based on content

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 10th, 2005
Replies: 7
Views: 4,580
Posted By bwest
Re: JavaScript -- Validating an email address

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 7th, 2005
Replies: 5
Views: 2,070
Posted By bwest
Re: FULLTEXT searching

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,070
Posted By bwest
Re: FULLTEXT searching

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,070
Posted By bwest
FULLTEXT searching

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: 35,362
Posted By bwest
Re: Amazing Website Designs - How do they do this?

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...
Forum: Website Reviews Jun 7th, 2005
Replies: 27
Views: 4,357
Posted By bwest
Re: sitesthatrock.com

I have posted some new. Sorry it has taken so long.
www.sitesthatrock.com

-B
Showing results 1 to 40 of 56

 
All times are GMT -4. The time now is 1:15 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC