Search Results

Showing results 1 to 40 of 380
Search took 0.04 seconds.
Search: Posts Made By: langsor
Forum: PHP Jul 29th, 2009
Replies: 12
Views: 523
Posted By langsor
Hey,

On the subject of development environments. I'm sure the Zend IDE is a good suggestion, however I too use Dreamweaver but just in Source view mode. I also have an Apache server running...
Forum: PHP Jul 27th, 2009
Replies: 12
Views: 523
Posted By langsor
Please use the CODE tags, found here http://www.daniweb.com/forums/misc-explaincode.html?TB_iframe=true&height=400&width=680
It will help us examine your code.


<?php
/* Program: mysql_up.php...
Forum: HTML and CSS Jun 15th, 2009
Replies: 16
Views: 11,055
Posted By langsor
I suspect Auctiva has signed an agreement with eBay or are in some way in business with eBay. I suspect eBay considers JavaScript either a security risk or potential to interfere with their site...
Forum: PHP Mar 3rd, 2009
Replies: 2
Views: 206
Posted By langsor
I made a similar page that gathered prices from different book vendors based on ISBN-AEN numbers. I created a vendor-specific RegEx to retrieve the price values after looking up the book page via...
Forum: JavaScript / DHTML / AJAX Dec 16th, 2008
Replies: 14
Views: 3,404
Posted By langsor
Okay, try it now, I had taken it off my server but I put it back now ... it should be working.
Forum: JavaScript / DHTML / AJAX Oct 10th, 2008
Replies: 2
Views: 2,342
Posted By langsor
You could try to find a way to convert it to Flash :-)

You could find a way to offer a VPN-type access to the site server, if it is Windows and can run the EXE file-type, then allow them to play...
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2008
Replies: 12
Views: 4,381
Posted By langsor
Hi, I've been busy with many things that have been keeping me away from the computer the last several weeks ... sorry for the lag time in getting back to this.

It's actually pretty easy to modify...
Forum: PHP Sep 13th, 2008
Replies: 6
Views: 758
Posted By langsor
Glad it worked.

The fun thing about making fields required is that you probably want to check them on the client (web browser) before submitting the form -- it's easier for the visitor to change...
Forum: PHP Sep 12th, 2008
Replies: 35
Views: 2,637
Posted By langsor
Here's one possible model you might employ ...

1. Visitor arrives at your site

2. Test for existing cookie
2a. if so => PASS
2b. if not => next step

3. Require user login
3a. new user...
Forum: PHP Sep 12th, 2008
Replies: 35
Views: 2,637
Posted By langsor
Honestly, I do think this would increase failed login attempts ... you would be surprised, there are lots of bad typists out there and also people just in a hurry to plow through stuff like login...
Forum: PHP Sep 10th, 2008
Replies: 12
Views: 1,607
Posted By langsor
Hi,

For debugging purposes I would do something like what Anthony is suggesting.

I would locate an image in the images directory, say G493075_101_12.jpg, and find it's database ID ... then in a...
Forum: JavaScript / DHTML / AJAX Sep 10th, 2008
Replies: 13
Views: 3,736
Posted By langsor
Okay, I did some Googling about on your behalf and it seems that some people were experiencing a similar situation after installing MS Windows Updates on their computers.

If you might have...
Forum: PHP Sep 10th, 2008
Replies: 6
Views: 1,649
Posted By langsor
I did not write the PHP Virus scan, that would be this guy: chaom79

I'm just trying to help if I can, but would be very interested in how well it works and what kind of virus activity it detects...
Forum: PHP Sep 10th, 2008
Replies: 35
Views: 2,637
Posted By langsor
Yes I did test the main block after I wrote it, but not in a production environment, so I can not guarantee this in any way without further testing and you will have to rely on your own judgment if...
Forum: PHP Sep 9th, 2008
Replies: 31
Views: 3,770
Posted By langsor
When I decided to teach myself Java, I took a good look at it and changed my mind ...
To paraphrase a familiar line -- "I'm a designer not a coder baby."

Anyway
1. If your site is built on top...
Forum: PHP Sep 9th, 2008
Replies: 3
Views: 3,254
Posted By langsor
If I understand correctly ...
1. You want to load the page with the form
2. When someone selects an item in Box A
3. Box B is populated with values based on Box A's selected item
4. And not...
Forum: PHP Sep 9th, 2008
Replies: 1
Views: 362
Posted By langsor
Could you be a little more specific with what you are trying to do ... there are too many options that you might be referring to with your above question.

Thanks
Forum: PHP Sep 9th, 2008
Replies: 6
Views: 1,649
Posted By langsor
Hi,

In PHP if you want to delete a file you can use the unlink function.

$file = 'path_to/test_file.txt';
unlink( $file );

Of course there might be permission issues with certain system...
Forum: PHP Sep 9th, 2008
Replies: 31
Views: 3,770
Posted By langsor
That could be done -- I think -- and it might give the SEO benefits you're looking for too with Google indexing Flash content....
Forum: PHP Sep 8th, 2008
Replies: 6
Views: 2,448
Posted By langsor
Hi,

Yes you can upload images with PHP, move them, rename them, resize-scale-crop-background fill them and all that ...

If your website loads large images on the page and scales them smaller...
Forum: PHP Sep 8th, 2008
Replies: 4
Views: 2,489
Posted By langsor
Yes, I know, the link I gave you is primarily for writing rss feeds -- if I understand that thread correctly -- there is also a bonus-link later in that same thread for reading them too.

But since...
Forum: PHP Sep 8th, 2008
Replies: 6
Views: 758
Posted By langsor
Hi,

Getting the email address to the mail function is pretty easy if the user enters their email with the form information.

main_form.html

<form action="form_script.php" method="POST">
...
Forum: PHP Sep 8th, 2008
Replies: 6
Views: 758
Posted By langsor
Great,

Create a database table for users with a field for if they've gone through the confidentiality page.
http://dev.mysql.com/doc/

Use sessions and or cookies so logged in users can skip...
Forum: JavaScript / DHTML / AJAX Sep 8th, 2008
Replies: 4
Views: 758
Posted By langsor
This is probably not what you're after, but I use the Error Console in Firefox and that's the only debugging tool I use for either JavaScript or CSS ...

Just a thought
Forum: PHP Sep 8th, 2008
Replies: 3
Views: 1,991
Posted By langsor
I don't know what you mean by 'I get a cross', I usually get a ton of binary data written out to the screen when I try what you're doing and since I have had no luck writing the image header before...
Forum: PHP Sep 8th, 2008
Replies: 1
Views: 536
Posted By langsor
Sometimes it's challenging to not mix up your html tags and php code, but as much as you can manage them as separate logical pieces, the easier it is to make it all work ... in my opinion.
...
Forum: PHP Sep 8th, 2008
Replies: 4
Views: 2,489
Posted By langsor
Hello, I don't know from personal experience but did run across a different thread that pointed me at this keen little PHP utility for RSS feeding ... there's also a link in one of the posts down the...
Forum: PHP Sep 8th, 2008
Replies: 8
Views: 1,764
Posted By langsor
I cannot reproduce your situation in either IE7 or FF3 -- here is the last of several ways I tried

Calling page code:

<?php
header( 'Location: test.php?junk=ford' );
?>


test.php
Forum: PHP Sep 8th, 2008
Replies: 3
Views: 495
Posted By langsor
I don't know of any free ebooks on learning PHP, did you try Google?
Forum: PHP Sep 8th, 2008
Replies: 1
Views: 356
Posted By langsor
I honestly don't want to dig through 216 lines of code to try and understand what you are trying to do with this line of code here
$result = mysql_query(sprintf("%s; select...
Forum: PHP Sep 8th, 2008
Replies: 2
Views: 854
Posted By langsor
Did you copy the table structure or copy the table and all of its records too?

Because if you copied the records, you are not going to get a new key-sequence with existing records.

Copy the...
Forum: PHP Sep 8th, 2008
Replies: 3
Views: 793
Posted By langsor
I would say that kkeith has got the answer here...look at what the browser is seeing

<?php
$var1 = array('this' => 'that');
?>

<...>

Looks like a tag to a browser ... even though it...
Forum: PHP Sep 7th, 2008
Replies: 31
Views: 3,770
Posted By langsor
Back again, sorry it took me so long to respond but I've been very occupied with many other things lately.


In light of not being able to go with digital-ether's suggestion...
Forum: PHP Sep 7th, 2008
Replies: 6
Views: 919
Posted By langsor
Just so you know, I started website design around 10 years ago with a strong interest in the design aspect ... when I started coding it was to be able to do cool stuff in Flash ... the programming...
Forum: PHP Sep 7th, 2008
Replies: 1
Views: 381
Posted By langsor
Hi,

I don't have personal experience with Win 2003 Server (I have it but never got around to installing it), but it looks like maybe this is the solution to the problem you are having --...
Forum: JavaScript / DHTML / AJAX Sep 6th, 2008
Replies: 7
Views: 2,868
Posted By langsor
I would like to help, but I guess I just don't understand what the real problem is ... my quickie write-up of you above code delivers both 1 and 0

What am I missing here?


<html>
<head>...
Forum: JavaScript / DHTML / AJAX Sep 6th, 2008
Replies: 2
Views: 1,092
Posted By langsor
Hi,

It's true that most elements do not support the onload event ... the window does and images do too.

I have yet to find a browser that loads content other than top to bottom, so you could...
Forum: JavaScript / DHTML / AJAX Sep 5th, 2008
Replies: 6
Views: 3,967
Posted By langsor
I had to run your script to see exactly what it was doing -- the c_url variable confused me for some reason?

Pretty cool idea actually ... but still the only way to take over a visitor's computer...
Forum: PHP Sep 5th, 2008
Replies: 31
Views: 3,770
Posted By langsor
I was thinking either using an iframe or calling the php script dynamically with javascript DOM to dynamically write a js-include tag ...

<script type="text/javascript...
Forum: PHP Sep 5th, 2008
Replies: 31
Views: 3,770
Posted By langsor
Brilliant idea -- and I really like that you are always thinking about security concerns too, but maybe I"m just paranoid.

Some cool ideas bouncing around this thread tonight.
Showing results 1 to 40 of 380

 


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

©2003 - 2009 DaniWeb® LLC