Re: [PHP] PHP + Amazon to retrieve book data

2007-11-22 Thread Dan Joseph
Hi Scott, This should help: http://hades.phparch.com/ceres/public/article/index.php/art::web_services::php5_soap/2 -Dan Joseph On Nov 21, 2007 7:39 AM, Scott Wilcox [EMAIL PROTECTED] wrote: Hey folks, Does anyone have any resources or links to resources concerning obtaining book data via

Re: [PHP] Question about cURL, and iFrames...

2008-02-18 Thread Dan Joseph
thing you may also want to keep in mind is that I think you'd have to go through and fix the image links and url links if they don't have the full url path in the html. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

Re: [PHP] Question about cURL, and iFrames...

2008-02-19 Thread Dan Joseph
the hyperlinks and replaced google.com with mykillersite.com, when they clicked on the Advertising link, they'd end up on www.mykillerlink.com/intl//ads/ instead, which would 404 of course unless you created that too. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day

Re: [PHP] checking for and enforcing https

2008-02-25 Thread Dan Joseph
['QUERY_STRING']); exit; } ? An alternative to this if you don't know the port would be to check $_ENV[HTTPS] for off: if ($_ENV[HTTPS] == off) ... [insert the rest of Daniel's code here] -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire

Re: [PHP] checking for and enforcing https

2008-02-26 Thread Dan Joseph
with http and https pointing to the same place. then we have an admin login for the site and we want to force people to go https even though they can do http to get there. So when our users go to http://domain/admin/ it then redirects them to https://domain/admin/. -- -Dan Joseph Build a man a fire

Re: [PHP] checking for and enforcing https

2008-02-26 Thread Dan Joseph
, this one checks for HTTPS being on or off. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] checking for and enforcing https

2008-02-26 Thread Dan Joseph
On Tue, Feb 26, 2008 at 11:04 AM, Robert Cummings [EMAIL PROTECTED] wrote: Surely you mean $_SERVER['HTTPS'] and not $_ENV['HTTPS']. woops! yep, I meant $_SERVER, thanks :) -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire

Re: [PHP] Making sure an include file works

2008-02-28 Thread Dan Joseph
or the contents in the include file? If you use require() instead of include(), your script will error out if there are any issues with the inclusion of the file. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

Re: [PHP] Is this the best way?

2008-03-14 Thread Dan Joseph
? I don't see anything wrong with that method. One thing I would suggest is that you make username unique in your database if you want to avoid duplicate results. But your way of checking is just fine as it is. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day

Re: [PHP] Double click problem

2008-03-19 Thread Dan Joseph
to prevent duplicates. It seemed to do the trick. I can send over some sample code if you need. For the javascript I just made the submit button hit a function, disable the button, then submit the form. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man

Re: [PHP] Date Issue

2008-03-31 Thread Dan Joseph
a buck. So? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Well, to re-iterate what Andrew said, you're on the 31st day of the month. Feb 31st translates to March, April 31st translates to May. -- -Dan Joseph Build a man a fire, and he

Re: [PHP] Include fails when ./ is in front of file name

2008-04-07 Thread Dan Joseph
locations. Wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php I'm working with a Windows server and able to use ./ in all my includes. Example - require_once( ./library/urs/URS.Framework.php ); His should work fine also. -- -Dan

Re: [PHP] Double billing problem

2008-04-19 Thread Dan Joseph
soon after that card can be charged again. 1 min, 5 mins, etc. I found it a good final failsafe. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Re: php framework vs just php?

2008-04-22 Thread Dan Joseph
just isolated it to Radicore. Do you even realize that? -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Big companies that use PHP?

2008-04-23 Thread Dan Joseph
market share does PHP take? Thanks, Thiago Pojda I'm with my 3rd company over $100 million in sales per that uses PHP. There are lots out there. -- -Dan Joseph Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] php 5 and mysql failure

2008-04-30 Thread Dan Joseph
://www.php.net/unsub.php Have you tried output your SQL query and pasting it into mysql to see if it runs? Sounds to me like it isn't a valid query, that would give you that error. You may also want to put some row count checking prior to trying to fetch any rows. -- -Dan Joseph Build a man a fire

Re: [PHP] Categories like wordpress

2008-05-01 Thread Dan Joseph
, and then a table for associating each picture with a given keyword. So you have your images table with your image information, then you have your keywords table with your keyword information, then an associations table with the image id and keyword id link. Either way should work ok. -- -Dan Joseph

Re: [PHP] Where to start!

2008-05-05 Thread Dan Joseph
. How big do you think it will be. How much acitivity, etc? That would probably help us point you in the right direction. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest

Re: [PHP] Recommended book on PHP/SOAP

2008-05-05 Thread Dan Joseph
a pretty nice SOAP library. You can ifnd it on google. I was able to work with it by searching for examples just fine. You may not even need a book. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he

Re: [PHP] Setting up a program that can be accessed by all domain on a server

2008-05-08 Thread Dan Joseph
could build a web service and give access to it for all other domains. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

Re: [PHP] Setting up a program that can be accessed by all domain on a server

2008-05-08 Thread Dan Joseph
On Thu, May 8, 2008 at 11:54 AM, Richard Kurth [EMAIL PROTECTED] wrote: Dan Joseph wrote: On Thu, May 8, 2008 at 11:47 AM, Richard Kurth [EMAIL PROTECTED] wrote: I have a program that I am writing that I what to install on my server that can be accessed by all domains on the server

Re: [PHP] Why doesn't working with array's ever stick in my thick head?

2008-05-09 Thread Dan Joseph
www.raoset.com [EMAIL PROTECTED] Rather than a counter, you could use foreach: foreach ( $RoutePieces as $key = $value ) { $blah = $value * $PieceWeight; } Make sense? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build

Re: [PHP] validating textarea using php

2008-05-13 Thread Dan Joseph
of doing it. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] JavaScript and PHP

2008-05-14 Thread Dan Joseph
://www.php.net/unsub.php document.getElementById('image1').src = http://portulan-online.net/einstein-; + ?php echo $_GET['satellite']; ? + .png; You could do that. Also, I'd suggest using $_GET instead of $_REQUEST. Request works,b ut it is very broad. $_GET is more specific/secure. -- -Dan

Re: [PHP] Validating Form input

2008-05-14 Thread Dan Joseph
time in between submits. If you don't want to bother with it, don't. I tend to just for that first layer. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day. Light

Re: [PHP] Problems with includes

2008-05-16 Thread Dan Joseph
? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php I'm pretty sure you're gonna need to include the entire path: require( /srv/www/html/Tools/tool2/tool2.php ); for both of your tools. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99

Re: [PHP] Threads PHP

2008-05-16 Thread Dan Joseph
/threads That might help you out. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Problems with includes

2008-05-16 Thread Dan Joseph
how their would be any logically. Technically, your docroot is already accessible. Its how you secure it that matters. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day

Re: [PHP] Problems with includes

2008-05-16 Thread Dan Joseph
? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php It deosn't look like it updated your path. Output a phpinfo() and make sure you have the correct php.ini. web servers tend to have more than one laying around. -- -Dan Joseph

Re: [PHP] php training institutes

2008-05-17 Thread Dan Joseph
it. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Enterprise

2008-05-20 Thread Dan Joseph
it. It can handle enterprise. Really, I think the architecture of the software would dictate that more than that language. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest

Re: [PHP] page suck attack

2008-05-21 Thread Dan Joseph
is flooded with hits and you can't get to it because its overloaded. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Reseller plans and Dedicated servers available. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

Re: [PHP] PHP eg.

2008-05-30 Thread Dan Joseph
and learn. thank you. Best thing to do is stay on this mailing list, and use php.net, phpbuilder.com, and other php web sites as a reference. There are a lot of code examples out there. Come up with a project, and start coding. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month

Re: [PHP] going from procedural style to object orientated style coding

2008-05-30 Thread Dan Joseph
If you want to go the book route, look for Design Patterns on Amazon.com, its a good general overview. That's how I got started, from there it starts to become natural for you. Maybe search around different PHP 5 OOP tutorials and look at some frameworks. -- -Dan Joseph www.canishosting.com

Re: [PHP] About MS SQL Connections...

2008-06-03 Thread Dan Joseph
: http://www.php.net/unsub.php Can you post your code and error so we can take a look? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

[PHP] WSDL/SOAP/PHP5

2008-06-06 Thread Dan Joseph
the WSDL? Should I just abandon PHP5's SOAP and use NuSOAP? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] WSDL/SOAP/PHP5

2008-06-07 Thread Dan Joseph
On Fri, Jun 6, 2008 at 6:33 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: On Fri, Jun 6, 2008 at 2:53 PM, Dan Joseph [EMAIL PROTECTED] wrote: Hi Everyone, I'm struggling with a WSDL trying to make it work right. I don't even know what to really ask. Basically I've created a WSDL and made

[PHP] NuSOAP assistance.

2008-06-08 Thread Dan Joseph
' = Jack London, 'title' = blah, 'numpages' = pages, 'toc' = toc ); return $vehicle; } $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : ''; $server-service($HTTP_RAW_POST_DATA); ? -- -Dan Joseph

[PHP] SOAP Client - Cannot use object of type stdClass as array

2008-06-19 Thread Dan Joseph
, savequote = 1 ); try { $d = $client-getQuote( $data ); } catch ( SoapException $e ) { echo pre; print_r( $e ); echo /pre; exit(); } echo pre; var_dump( $d ); ? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Dan Joseph
that message out. Especially in this day and age where most people think enlisting is just volunteering to go to Iraq. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his

Re: [PHP] lester

2008-06-26 Thread Dan Joseph
es que no todos ignoramos las mismas cosas(*_*) Servicio del Grupo de Redes Universidad de Cienfuegos Contacto: [EMAIL PROTECTED] Hi, Meet The Parents is 1 hr, 48 minutes. Hope that helps! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99

Re: [PHP] how to load uneven XML file into an array

2008-06-27 Thread Dan Joseph
it. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

[PHP] SOAP - function does not exist?

2008-06-30 Thread Dan Joseph
have gone over the wsdl countless times, and do not see anything wrong it. Can anyone tell me where to begin trouble shooting this? I can post code from the client and class if need be. I guess I'm mainly trying to figure out: Does this point to a wsdl problem, or code problem? -- -Dan Joseph

Re: [PHP] SOAP - function does not exist?

2008-06-30 Thread Dan Joseph
On Mon, Jun 30, 2008 at 11:08 AM, Will Fitch [EMAIL PROTECTED] wrote: It doesn't look like the SOAP service at http://new.vehicletransportusa.com/v2/services/URS.QuoteServices.phpdoesn't actually implement a function called getOrderHistory. Can you verify that? *From:* Dan Joseph

Re: [PHP] Execute command line as a different user

2008-07-01 Thread Dan Joseph
check on php.net, there is a post on there that talks about using sudo: @exec(echo 'apache' | /usr/bin/sudo -u mail -S /var/www/html/mailset.sh $name); You may want to read thru it, php.net/exec, go to the user notes. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man

Re: [PHP] What font/size do you use for programming?

2008-07-09 Thread Dan Joseph
-- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Courier New, 9pt with PhpEd -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man

Re: [PHP] Re: What font/size do you use for programming?

2008-07-10 Thread Dan Joseph
and forth for 10 minutes. She became hostile about it. A couple of our other IT guys tried to explain data had no weight. She ended up getting fired over it. Just hilarious. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest

Re: [PHP] Re: What font/size do you use for programming?

2008-07-10 Thread Dan Joseph
perfectly legible. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Warning:Cannot modify header information - Error

2008-07-15 Thread Dan Joseph
it, and you should be good. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

[PHP] Returning SOAP array type

2008-07-18 Thread Dan Joseph
that doesn't work. I tried some other variations. What am I missing? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Date formatting issue

2008-08-05 Thread Dan Joseph
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Check out date() and mktime() -- http://www.php.net/date http://www.php.net/mktime Both of those should get you in the direction of formating dates. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man

[PHP] SOAP - return a list of items

2008-08-13 Thread Dan Joseph
resources on how to setup the WSDL. Can someone point in the direction to get going on this? Anyone have an example WSDL that handles this type of thing that I could look at? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest

[PHP] Re: SOAP - return a list of items

2008-08-13 Thread Dan Joseph
:getQuoteHistoryResponse /SOAP-ENV:Body /SOAP-ENV:Envelope It seems like I am just missing something somewhere. Anyone able to help? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm

Re: [PHP] PHP editor for linux

2008-08-14 Thread Dan Joseph
search the archives, there are dozens of discussions on this one. I think you'll find a lot of people recommend the Zend IDE, I personally use PhpED, both are good. Kate is pretty good if you don't want to buy anything (apt-get install kate -- if its not there...) -- -Dan Joseph

Re: [PHP] SESSION problem

2008-08-15 Thread Dan Joseph
General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php What's in your header.php? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm

Re: [PHP] Buffering problem

2008-08-15 Thread Dan Joseph
: http://www.php.net/unsub.php Take a look at http://us.php.net/manual/en/function.ob-flush.php -- There are some examples at the bottom on how to do this. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man

Re: [PHP] Re: SOAP - return a list of items

2008-08-18 Thread Dan Joseph
On Sun, Aug 17, 2008 at 8:32 AM, Luke [EMAIL PROTECTED] wrote: why use soap for this? I just use a javascript array for this kind of thing... 2008/8/13 Dan Joseph [EMAIL PROTECTED] Maybe more info will help: Here is what I have so far for the WSDL... xsd:complexType name

Re: [PHP] PHP Prado

2008-08-18 Thread Dan Joseph
it was pretty good. It did everything he needed, in a timely fashion, and didn't seem to have a whole lot of overhead to it. From what I saw when I was looking over the tutorials, its pretty flexible and was easy to pick up on. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month

Re: [PHP] Restore Leading Zeros in Zip Codes

2008-08-22 Thread Dan Joseph
and be glad you won't have to suffer in the future. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

[PHP] Assign things to users

2008-08-26 Thread Dan Joseph
everyone else, or what else is out there. Any ideas would be appreciated! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Assign things to users

2008-08-26 Thread Dan Joseph
can really tie that part in our current form. But maybe. I appreciate the input! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Assign things to users

2008-08-26 Thread Dan Joseph
On Tue, Aug 26, 2008 at 12:31 PM, Jason Pruim [EMAIL PROTECTED] wrote: On Aug 26, 2008, at 11:16 AM, Dan Joseph wrote: Hey Dan, Wolf, Thanks for the input. I do not have any checks in there for balancing out the number of quotes per user. That's actually a great idea and something I

Re: [PHP] PHP IDE needed

2008-08-28 Thread Dan Joseph
features and break points that can make debugging a whole lot easier and quicker. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Checking for http://

2008-08-29 Thread Dan Joseph
() (www.php.net/substr) if ( substr( $web_site, 0, 7 ) != http://; ) { $web_site = http://; . $web_site; } -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Debugging PHP scripts

2008-08-29 Thread Dan Joseph
. Just basic deductive reasoning, and some helpful information along the way. Do you use an IDE at all? You may want to check some out with debuggers built in. That would help you out. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm

Re: [PHP] Debugging PHP scripts

2008-08-29 Thread Dan Joseph
On Fri, Aug 29, 2008 at 11:51 AM, Edward Diener [EMAIL PROTECTED]wrote: Dan Joseph wrote: On Fri, Aug 29, 2008 at 11:33 AM, Edward Diener [EMAIL PROTECTED] wrote: I have not looked into PHP IDEs at all so far. Any recommendations ? Thanks ! -- PHP General Mailing List (http

Re: [PHP] Testing for Current pointer position in array during iteration

2008-08-29 Thread Dan Joseph
! 'Arthur C. Clarke' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php This may also help as well as Jochem's suggestion: http://us2.php.net/key -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he

Re: [PHP] Converting JPG to Windows BMP

2008-08-29 Thread Dan Joseph
/) To unsubscribe, visit: http://www.php.net/unsub.php Check your php.ini file, you should see a commented out line with php_gd2.dll in there. Uncomment that, restart your web server, and you should have GD support. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he

Re: [PHP] Converting JPG to Windows BMP

2008-08-29 Thread Dan Joseph
/) To unsubscribe, visit: http://www.php.net/unsub.php Actually, I think I misread you there... Sorry... I have no idea either! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

Re: [PHP] Recommendation

2008-09-02 Thread Dan Joseph
recommendations. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Recommendation

2008-09-02 Thread Dan Joseph
What about also creating a PHP General List group? Has anyone created Groups on linkedin before? Maybe we could get quite a few people linked thru one? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light

Re: [PHP] Secure way to handle pw on session.

2008-09-02 Thread Dan Joseph
it would be to process everything when you his submit, with the password being in $_POST or $_GET, then after you authenticate the user, drop it and don't store it with sessions. If you find you need it to be stored for other things, I'd suggest rethinking the design/checking you're doing. -- -Dan

Re: [PHP] Google Chrome

2008-09-02 Thread Dan Joseph
/) To unsubscribe, visit: http://www.php.net/unsub.php Well its not that exciting I guess. All the hype, and its a browser. :) It is fast though, I'll give it that. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light

Re: [PHP] Recommendation

2008-09-02 Thread Dan Joseph
it, but I think it should be a community chosen name. Suggestions? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Recommendation

2008-09-03 Thread Dan Joseph
is a lot of PHP groups. In that case, maybe someone that oversees the PHP list should create one that is associated to this one. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire

Re: [PHP] CMS-Blog system

2008-09-03 Thread Dan Joseph
I donno, 10,000 * 100 = 1 million. That's not really big. A good database should hold up with 100x that or more. I would keep it in one if it were me. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man

[PHP] Header() - POST

2008-09-05 Thread Dan Joseph
=JacquesDAddress1=789 BoulevardDAddress2=DCity=NorthvilleDState=MiDZipCode=48167DPhone=586777DCellPhone=586677VehicleVIN=1234567890ABCDEFGVehicleYear=2007VehicleMake=HondaVehicleModel=CivicVehicleColor=GreyVehicleMiles=234234ordersubmit=Submit OrderUserID=90QuoteID=427 -- -Dan Joseph

Re: [PHP] Header() - POST

2008-09-05 Thread Dan Joseph
! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Header() - POST

2008-09-05 Thread Dan Joseph
On Fri, Sep 5, 2008 at 12:11 PM, Boyd, Todd M. [EMAIL PROTECTED] wrote: -Original Message- From: Dan Joseph [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2008 10:59 AM To: PHP General Subject: Re: [PHP] Header() - POST On Fri, Sep 5, 2008 at 11:48 AM, Wolf [EMAIL

Re: [PHP] Shopping Carts/Checkout Software

2008-09-08 Thread Dan Joseph
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Check out osCommerce (oscommerce.com), its open source, written in php, uses mysql, and you should be able to hook into it pretty easily like you want. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build

Re: [PHP] tedd's back from vacation

2008-09-09 Thread Dan Joseph
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Look, just because we let you out of your cage, doesn't mean you have to go breaking your bones! No more vacations! BTW, was that dance in response to MSU winning 2 games in a row? -- -Dan Joseph www.canishosting.com - Plans start

Re: [PHP] tedd's back from vacation

2008-09-10 Thread Dan Joseph
On Wed, Sep 10, 2008 at 9:56 AM, Thiago H. Pojda [EMAIL PROTECTED]wrote: On 9/10/08, Jason Pruim [EMAIL PROTECTED] wrote: On Sep 10, 2008, at 9:40 AM, tedd wrote: At 10:05 PM -0400 9/9/08, Dan Joseph wrote: Look, just because we let you out of your cage, doesn't mean you have

Re: [PHP] tedd's back from vacation

2008-09-10 Thread Dan Joseph
care of our MSU grads here too. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Header() - POST

2008-09-11 Thread Dan Joseph
javascript in the past to do it, but it seemed messy to me. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Thank you...

2008-09-11 Thread Dan Joseph
ignore 'em. Have you all seen the picture of the new battle cruiser built out of the scrap metal from the towers? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

[PHP] Securing pages sections

2008-09-11 Thread Dan Joseph
- EmployeeID - SecurityKeyID Would anyone suggest a different strategy to the database portion? Maybe additions or subtractions to the tables? Also, how would go about implementing them the key system? Again, I am looking for some opinions or experiences anyone has had doing this. Thanks! -- -Dan Joseph

Re: [PHP] Securing pages sections

2008-09-12 Thread Dan Joseph
Hey Guys, Thanks for the tips, both views make sense. I think my main problem was I as overthinking it. Thanks! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm

Re: [PHP] Browser could not get mp3 files from http site

2008-09-12 Thread Dan Joseph
post your code that handles this. Going there and looking at the source, it only says the file could not be found. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest

Re: [PHP] Paypal Integration

2008-09-16 Thread Dan Joseph
yourself best you can. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Paypal Integration

2008-09-16 Thread Dan Joseph
on PayPal. Shop around for your credit card services. PayPal is quite expensive in comparison. I myself only use them to accept PayPal payments, not visa/mc. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man

Re: [PHP] Paypal Integration

2008-09-16 Thread Dan Joseph
You can integrate it the way you like. I have mine setup like PayPal's easy way. It just tosses you out to a PayPal payment site, and then it tosses you back. Its how my billing/ordering system works. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he

Re: [PHP] Paypal Integration

2008-09-17 Thread Dan Joseph
. They've stated many times that privacy is lost anyway, so why bother with it. I don't think they're trying to do anything vindictive, but at the same time, they're a bit more intrusive than the average person likes. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man

Re: [PHP] PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Dan Joseph
['CountSteps']. That seems a bit more normal looking to me atleast. Also, try echoing out your query on the screen to see that its formating properly in the PHP code. You may have something wrong in there, although I don't see any off hand. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month

Re: [PHP] PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Dan Joseph
On Wed, Sep 17, 2008 at 2:30 PM, Vinny Gullotta [EMAIL PROTECTED]wrote: Dan Joseph [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Wed, Sep 17, 2008 at 2:17 PM, Vinny Gullotta [EMAIL PROTECTED] wrote: What I want to do is find the top 10 servers where the column steps

Re: [PHP] Web Project Leader -- Contract - San Francisco area

2008-09-17 Thread Dan Joseph
, but will consider someone who knows C or Java instead. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] Web Project Leader -- Contract - San Francisco area

2008-09-17 Thread Dan Joseph
On Wed, Sep 17, 2008 at 2:56 PM, Robert Cummings [EMAIL PROTECTED]wrote: On Wed, 2008-09-17 at 14:49 -0400, Dan Joseph wrote: Not to defend thisBUT There are places that use multiple platforms. My company uses .NET and PHP for different things. Also recruiters will often target

Re: [PHP] PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Dan Joseph
, but I've had issues in the past where it didn't work. ITs also good practice to use 'em. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm for the rest of his life.

Re: [PHP] PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Dan Joseph
= 'IISRESET' AND timestamp = '2008-09-17 11:40:34' AND timestamp = '2008-08-17' GROUP BY servername ORDER BY COUNT(*) DESC LIMIT 10 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Can you show us one of the var_dumps? -- -Dan Joseph

Re: [PHP] PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Dan Joseph
know your problem, sorry for not seeing this sooner. mysql_fetch_row returns the numerical array types. $array[0]... You want to use mysql_fetch_array(). Change to that, and you should be seeing the servername's. -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man

[PHP] ODBC Functions MS SQL Server 2005

2008-09-18 Thread Dan Joseph
something with the ODBC driver, and updating the ODBC driver isn't an option. Anyone else having this problem? Any suggestions? -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he will be warm for the rest of the day. Light a man on fire, and will be warm

  1   2   3   4   5   >