No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: Hi, Im having a similar problem here. Im trying to make a script: #/bin/bash teste="{33,351}"; ls -laht /tmp/interface*_${teste}_*.xml but it gives an error. If i change `${teste}` for the static value itself it works. Any idea? I've tried to evaluate with the `$()` but it doesnt work. Thanks | |
Hi, Im having problems when using the header("Location: filename?args") function to act as a swf file. It works with firefox but not with Internet Explorer. [CODE] <object id="flashfile_obj" type="application/x-shockwave-flash" data="get_file.php?name=<?=urlencode("test.swf?&test_to_swf=1")?>" width="900" height="500"> <param name="movie" value="get_file.php?name=<?=urlencode("test.swf?&test_to_swf=1")?>"/> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="base" value="_dir" /> </object> [/CODE] The … | |
Hi, I wonder how can access to a static method of a class called width from another object that has an attribute called width too: ex: [CODE] public class width{ private int test; public static int testValue(){ return this.test; } } public class Rect{ private int width; private int height; … | |
Re: Hi, You want a script and not use a webapp but then you say that you get a file from a form. If you want to get a file from a webform: You just Post the form to the server. [url]http://www.tizag.com/phpT/fileupload.php[/url] Then use the ftp_put function of php to copy … | |
Re: Hi, I realy didnt understand what you are trying to do. The links has nothing there. But it seems you have to use jquery too. | |
Re: Hi, Once you are getting the file from a webserver you cannot do that without doing more steps. One solution is: - The user gets the file from the link. - The user update the file and save it to its own computer - Then makes upload to the server … | |
Re: Use jquery: [url]http://jquery.com/[/url] use the event keypress: [url]http://api.jquery.com/keypress/[/url] | |
Re: Hi, You can use jquery. To create an element: [icode] $("<input type=text name='whatever' id='whatever' value='whatever'/>").appendTo("#form_id"); [/icode] To set an event to whatever: [icode] //Change //Note that you can have a button to send the information $("#whatever").change( function(){ var answer=$(this).val(); $.ajax({ url: 'http://yoururl?answer_value='+answer, success: function(data) { alert("Success"); } ); } ); … | |
Re: You have to clarify better what you want to do. Consult this link to see if its what you want: [url]http://datatables.net/[/url] Best Regards, | |
Re: Hi, If you have a linux server its very easy. When the user makes the upload run a script that runs, for example, the mplayer to do how much jpgs has you want. Then put the name of the files in the database and voila. Tip: You can do a … | |
Re: Hi, Im trying to make a script: #/bin/bash teste="{33,351}"; ls -laht /tmp/interface*_${teste}_*.xml but it gives an error. If i change `${teste}` for the static value itself it works. Any idea? I've tried to evaluate with the `$()` but it doesnt work. Thanks |
The End.