|
You can't
Brad
Australian
- Bradml on "MVP Status"
If this was posted in a programming board please rate my answer
|
|
|
|
|
How Can I cath the duplicate values, Here is my code
Please help to store the value in a array
i have this code
function duplicate()
{
var arr = new Array()
for (i = 0; i < 26 ; i++)
{
// I want to pass this value to the array
Vals = document.getElementById("txtSeries" + i)
// if this value is already in the array, message error will prompt
alert('Value already exist')
break;
}
}
|
|
|
|
|
|
I picked the easiest solution, but How I can i pass/or insert the entered value in the script
document.getElementById("txtSeries" + i ).value
var myArray = new Array()
for (var i=0; i
|
|
|
|
|
Loop through the values that you have already put in the array to look if the value is already there before adding another value.
---
single minded; short sighted; long gone;
|
|
|
|
|
But I dont know in what part, Sorry Im very new in programming....
|
|
|
|
|
Hi there,
Can you tell me that how can I run .exe file through php. If you have any example please tell me.
Thanks in advance.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
You can't run exe's on a client through server side script, you'll need a Java applet or activeX or something along these lines.
|
|
|
|
|
|
Is the executable on the server or the client side?
Brad
Australian
- Me on "Public interest"
If you actually read this let me know.
|
|
|
|
|
It's client side
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Ok well in that case PHP cannot do that, it is a server side language and therefore cannot interact with the client's machine. What is it you are trying to achieve with the execution of the executable?
Brad
Australian
- peterchen on "Who has the worst keyboard"
Keyboard? Ha! I throw magnets over the RAM chips!
|
|
|
|
|
I want to execute Advertisement exe made in flash by php.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Can you quickly run me through the hole process so i can orient myself?
Brad
Australian
- unknown PHP Developer on "Job Prospect"
Requirement: * Experience working with XML, XSL, XPath
Comment: and other things starting with X.
|
|
|
|
|
I am creating a website, On which I want to put an exe as an advertisement on that website. I am using php to display that page and want to put the advertisement on that page by using php itself.
May you know that in vb.6 there is a command "shell" to execute the application like exe, Is there anyone in php??
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
vb and PHP are entirely different bags of chips. Can you email me a copy of the "exe" you have?
Brad
Australian
- Captain See Sharp on "Religion"
any half intelligent person can come to the conclusion that pink unicorns do not exist.
|
|
|
|
|
Hi,
If the flash animation is supposed to appear in the webpage, wouldn't it make more sense to have it as an SWF file, rather than an exe file, and just embed it in the page? That way you can have PHP construct the page as normal including the necessary markup for the animation.
Here is a good discussion of methods for embedding flash animations in pages: http://alistapart.com/articles/flashsatay[^]. The target of the article being to stick to standards, but I think it gives some good background.
This just be a case of having the flash advert saved as an SWF file. If the flash advert is an exe file, I'm sure there are tools about to convert it. If you created the flash advert, can you not save it as an SWF file? If the advert was supplied by a 3rd party, can they not re-supply as an SWF file?
This is all fine unless I'm missing something, oh, and the targeted client browsers don't have a flash plugin installed.
Cheers,
Jason.
-- modified at 5:50 Friday 23rd March, 2007
|
|
|
|
|
Yes jmpcc has the right answer. I was not aware that flash's could be compiled into executables. But anyway the standard approach is to use the swf file.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Sorry, took my eye off the ball.
Bradml wrote: I was not aware that flash's could be compiled into executables.
Flash as a standalone exe is just the flash movie rolled up with a standalone flash player (I'm pretty sure, not being a flash aficionado myself).
Cheers,
Jason.
|
|
|
|
|
Does anyone have knowledge of the NTLM authentication scheme? I am writing a proxy server, and would like to know, before I try, whether this scheme will work across proxies.
Thank you
--------------------------------
"All that is necessary for the forces of evil to win in the world is for enough good men to do nothing" -- Edmund Burke
|
|
|
|
|
Check this Link[^]
May it will helpful for you
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
|
Hi,
Currently there is a web user that always gets an error on our
application due to a missing session variable. All other session
variables are still in tact, but this one seems to disappear and hence
the user can no longer access everything on the site.
Any ideas as to where this value goes? I've checked my ASP code and
saw nothing that would re-set this variable's value. Moreover, only a couple of
users experience this problem
Any input would be much appreciated.
|
|
|
|
|
Could a browser specific setting cause this? I've tried impersonating the user on the production site, and even though I am limited to what I can do (since I am not the user himself), I still havent been able to reporoduce the problem.
|
|
|
|
|
Abbas82 wrote: Could a browser specific setting cause this?
Not directly. The session variables are stored in the Session object on the server, and is totally independent of the browser.
The only possibility that a browser setting could cause this is indirectly, i.e. that there is some code in your application that removes the session variable depending on some value from the browser.
---
single minded; short sighted; long gone;
|
|
|
|