Sponsored Content
Full Discussion: Can't submit a form.
Top Forums Shell Programming and Scripting Can't submit a form. Post 302769802 by bakunin on Wednesday 13th of February 2013 01:08:45 PM
Old 02-13-2013
Moderator's Comments:
Mod Comment OK, time to cut the losses. I am going to close this thread.

@DGPickett: The thread-opener has already stated that he thinks the information you provided was not pertinent to his problem in any way. Regardless of this being right or wrong: if he doesn't get it and you think he should get it, then explain. If he still doesn't get it, explain again, in greater detail. And so on, until he does get it or until you are convinced you are wrong. If you don't want to do it this way, this is perfectly OK - nobody asks you to write to a certain thread. But in this case, simply stay away instead of putting "more of the same" here, which you already found not to work. To continue doing what is already proven not to bear the desired result is the way astrologists and similar people act, not the way engineers do. Think about that.

@tip78: It is your own free will to come here, open a thread and ask for help. Nobody has asked you to do so and in fact many UNIX experts in this world never do it in their life. But if you indeed choose to come here and ask for help, you can do that only on the pretext, that a genuine willingness to help you is there. If this is not the case, you'd better go elsewhere, where you trust the people more than you obviously do trust us. It might be that you think DGPicketts information to be irrelevant for your problem, but in calling into question his sincere motives altogether you crossed the line from a purely technical controversy to something personal. Not for the first time, as i recall and i have already told you to tone it down before.

I suggest you ask yourself in-depth if what you are after here is a technical discussion or a personal confrontation. If you are looking for a good debating platform i have to inform you that you are mistaken: we aren't and we will never be. Notice, that you are only welcome as long as the former is - exclusively - the case.

Ah, and: shame on you two!

bakunin

Last edited by bakunin; 02-13-2013 at 02:28 PM..
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Changing Unix form to Microsoft Word form to be able to email it to someone.

Please someone I need information on how to change a Unix form/document into a microsoft word document in order to be emailed to another company. Please help ASAP. Thankyou :confused: (8 Replies)
Discussion started by: Cheraunm
8 Replies

2. Shell Programming and Scripting

PHP Help with Form Submit

Hi, I have a custom HTML form that has a couple radio buttons and a text field that requires a number. I'm not a php programmer and could use some help with putting together php code to calculate a total based on the radio button selection and the text field number. ... (3 Replies)
Discussion started by: nck
3 Replies

3. Shell Programming and Scripting

using wget to submit a form on linksys router

I'm trying to use wget to submit a form. I have tried to dig out what is actually being "posted" and where, using tamperdata (see below). http://ubuntuforums.org/attachment.php?attachmentid=109123&d=1239224127 Here is my wget command: wget --http-user=xyz --http-password=xyz... (1 Reply)
Discussion started by: mike909
1 Replies

4. Shell Programming and Scripting

Using cURL to submit a post form

I am trying to write a shell script to use curl in order to automate downloading data from a website. The URL with the post form is here: http://try-db.org/de/InfoBySpecies.php . I have a list of about 1800 different species I want to check. For Example, choose the first species and use the... (2 Replies)
Discussion started by: hansvg
2 Replies

5. Shell Programming and Scripting

Transpose Data form Different form

HI Guys, I have data in File A.txt RL03 RL03_A_1 RL03_B_1 RL03_C_1 RL03 -119.8 -119.5 -119.5 RL07 RL07_A_1 RL07_B_1 RL07_C_1 RL07 -119.3 -119.5 -119.5 RL15 RL15_A_1 RL15_C_1 RL15 -120.5 -119.4 RL16... (2 Replies)
Discussion started by: asavaliya
2 Replies

6. UNIX for Dummies Questions & Answers

How to submit form on an php webpage from command line?

Hello, i have page domain.com/form.php the form fields on form.php are named: name=ipaddress name=port and submit button is named: submit i want to ask how the linux command will look like to submit the form filled with: ipaddress: 127.0.0.1 port: 80 I tried various curl and... (5 Replies)
Discussion started by: postcd
5 Replies

7. Programming

Html form to submit data to bash script

hi all, im going to design a web html form so users can input what username and password they want to make the ftp account, once they enter in a username and password they click on the submit button and it submits it to a bash script and then the bash script will run and finish of making the... (3 Replies)
Discussion started by: robertkwild
3 Replies

8. Shell Programming and Scripting

Exec submit form in bash script

Hi All, I'm new in forum. Many congratulations to everyone for all work. I'm not an expert in bash script I've a problem with a sh file. The sh file run every t minuts and it read data from txt file and then compile form. Finally, the user, from the web browser click on send. The script... (0 Replies)
Discussion started by: Herbert
0 Replies

9. Shell Programming and Scripting

Trying to submit web form content to a shell script

Hi I was hoping some one could help me with a problem I have. I am trying to collect some information from a web form and save it to a text file. I found an example on this site that is sort of what I am trying to accomplish, the shell script bellow should echo the input back to the browser... (0 Replies)
Discussion started by: Paul Walker
0 Replies
curl_global_init(3)						  libcurl Manual					       curl_global_init(3)

NAME
curl_global_init - Global libcurl initialisation SYNOPSIS
#include <curl/curl.h> CURLcode curl_global_init(long flags); DESCRIPTION
This function sets up the program environment that libcurl needs. Think of it as an extension of the library loader. This function must be called at least once within a program (a program is all the code that shares a memory space) before the program calls any other function in libcurl. The environment it sets up is constant for the life of the program and is the same for every program, so multiple calls have the same effect as one call. The flags option is a bit pattern that tells libcurl exactly what features to init, as described below. Set the desired bits by ORing the values together. In normal operation, you must specify CURL_GLOBAL_ALL. Don't use any other value unless you are familiar with it and mean to control internal operations of libcurl. This function is not thread safe. You must not call it when any other thread in the program (i.e. a thread sharing the same memory) is run- ning. This doesn't just mean no other thread that is using libcurl. Because curl_global_init() calls functions of other libraries that are similarly thread unsafe, it could conflict with any other thread that uses these other libraries. See the description in libcurl(3) of global environment requirements for details of how to use this function. FLAGS
CURL_GLOBAL_ALL Initialize everything possible. This sets all known bits. CURL_GLOBAL_SSL Initialize SSL CURL_GLOBAL_WIN32 Initialize the Win32 socket libraries. CURL_GLOBAL_NOTHING Initialise nothing extra. This sets no bit. RETURN VALUE
If this function returns non-zero, something went wrong and you cannot use the other curl functions. SEE ALSO
curl_global_init_mem(3), curl_global_cleanup(3), curl_easy_init(3) libcurl(3) libcurl 7.12 11 May 2004 curl_global_init(3)
All times are GMT -4. The time now is 11:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy