SergeiSS
Members-
Posts
239 -
Joined
-
Last visited
About SergeiSS
- Birthday 01/13/1968
Contact Methods
-
ICQ
107637663
-
Skype
sergeiss_nn
Profile Information
-
Gender
Male
-
Location
Russia, N.Novgorod
SergeiSS's Achievements
Newbie (1/5)
0
Reputation
-
jQuery update textbox with progress of php function
SergeiSS replied to datflo's topic in Javascript Help
I also don't know how to ask google about this task But I can direct you, I give you an algorithm. 1. You need daemon at your server. It could be PHP daemon. 2. This daemon must receive your request to start that lengthy procedure and start it. 3. Daemon answers to browser that it has started your task. 4. Your JS script will periodically ask (via AJAX) that daemon about the state of the task. 5. While in process it returns one state, when finished it returns another state. You may use ajax or WebSocket to connect JS script and server. The second one, I think, is preferrable for this task, because server can send to the browser any information without additional requests. -
Everyone can remove this code and you won't get to know that script was used.
-
I think I understand what you like to do. 1. Use normal AJAX. 2. Another possibility - iframe, hidden iframe. Just create your URL (in JS) and set iframe's SRC equal to this URL. Script will be loaded into this iframe. Moreover, you may send some JS commands from iframe to the main frame in order to get the feedback.
-
Do you know about PrintScreen button? It's better to use it than your camera in order to show the screen About your question. Try to set style = "width: 100%;position: fixed;bottom: 0px;" for the div with id="sub_wrap". It might help you - phone and e-mail will be always at the bottom of the screen.
-
This Upload Form works well in Google, but not IE or FF
SergeiSS replied to Chrisj's topic in PHP Coding Help
What is the meaning of the last qoute in this line? You have incorrect syntax here Maybe this is the only problem? Also, you insert raw POST data into the MySQL. It's bad! Then... What for do you "require_once 'header.php';" in 2 places??? -
How to display a image from postgreSQL using php
SergeiSS replied to nandakishor's topic in PostgreSQL
Well... I see PNG in the data. But you try to use it as JPEG. Maybe this is a problem? Try to change header("Content-type: image/jpeg"); to header("Content-type: image/png"); -
Just imagine - you take your phone, dial number and called subscriber answered. After that you may talk to that man. Internet connection is similar to phone call. First you need a connection and when this connection is established two programs (client and server) may talk. In other words your question is "Is it possible to talk to a remote person without making a call to his phone?" What can you answer to this question?
-
It's easy to do 1. onsubmit="return false;" you should remove that - as it was said earlier. 2. Create a function to submit a form. Let it be form_caller(). This function have to set a special JS variable (V) and then call submit() function for a from. 3. Create second function, let's name it submit_check. It checks the state of special variable V and return true if V is set and return false otherwise. 4. Write for the form onsubmit="return submit_check()". 5. It's ready. If you press Enter, submit_check() is called and return false. Form is not submitted. If you call form_caller(), then submit_check() will return true and form will be submitted. I hope that this explanation in clear enough.
-
I think there is a "slight" difference between "you give him/her bad anwswer", "your answer is right" and "using something like json_encode() ... is better". Do you agree with me?
-
What is wrong in my answer? Endorphin tries to create a list of comma-separated values. His task was to remove the last comma. Am I right? And I show the way how to create a string without comma at it's end. Do you agree? OK, again - where my answer is wrong? Even if he would like to use multidimensional array, he can use my code. He just need to change it a little.
-
You'd better do it in another way. The more accurate (and more compact) code is the next if($via != null) { $points=array(); foreach($via as $point) { if($point != "") $points[]="{location:'$point'}"; } if( count( $points > 0 ) ) echo "var points = [".implode( ',', $points)."];\n";
-
How to get the time the file was last modifed at in a PHP script
SergeiSS replied to APD1993's topic in PHP Coding Help
This might help you: http://ru2.php.net/manual/en/class.directoryiterator.php Look for DirectoryIterator::getMTime -
Yes, it's possible. And from my point of view it's the preferred method. Because if something is wrong in the input data, I can show all data entered and give to user a chance to change it. When data is correct I can process it and do anything I wish. If I need, I can root to another script or do something here, in this script.
-
I think you need GD2 or Imagick library if you like to do it inside PHP. You may save resized images at you server or resize them 'on the fly', dynamically, every time when you need it. In the first case you save a time (but need some space on a server), in the second case you save a space on your server (but need a time to resize every time when you need a smal copy).
-
Maybe this http://phpexcel.codeplex.com/releases/view/45412 helps you. Try it.