Sponsored Content
Full Discussion: open a web link from
Top Forums Shell Programming and Scripting open a web link from Post 302299049 by c0mrade on Thursday 19th of March 2009 04:45:52 AM
Old 03-19-2009
open a web link from

Hello,

I am looking a way on how to add in my sh script a line that once run would visit a web link www.domain.com/something.php?smt=SOMEDATA and close.


Thank you,
C
 

6 More Discussions You Might Find Interesting

1. UNIX IEEE Std 1003.1-2001 (POSIX.1)

Link to the Open Group (UNIX Standards)

Click HERE to learn about The Single UNIX Specification, Version 3 Or: Here is another link to the UNIX IEEE Standard, an Open Group Technical Standard, Issue 7 Keywords UNIX® is a registered trademark of The Open Group (0 Replies)
Discussion started by: Neo
0 Replies

2. Solaris

Solaris 10 - Web link - Course Catalog

For anyone thats interested - Please see link below for Solaris 10 info describing new features/enhancements, changes to commands and also removal of some features. Admintool etc... http://training.sun.com/US/catalog/courses/WS-9000-S10-90.html (0 Replies)
Discussion started by: frustrated1
0 Replies

3. UNIX for Dummies Questions & Answers

need help and coroporation About Open Source Web Conferencing System Backtalk

hi All peopel im loooking for help from someone who could help me to install this Backtalk Open Source Web Conferencing System you can download it from http://www.unixpapa.com/backtalk/ so plz anyone know how install it into my website help me or email me so we cna discuse and corporate... (0 Replies)
Discussion started by: ksar001
0 Replies

4. Solaris

Can't open netscape web-browser

I am working in solaris 9 and i want to work with web-browser(netscape). but when I am openning it,it shows the message -- An error occurred reading the startup configuration file.Please contact ur administrator./.netscape/preferences.js,line 66:unterminated string literal.t,127.0.0.1 please... (3 Replies)
Discussion started by: smartgupta
3 Replies

5. Programming

g++ fails to link to static library when compilation and link in single command

Hello All, I've encountered a strange behaviour from g++ that doesn't make sense to me. Maybe you can shed some light on it: I have a bunch of source files and want to compile them and link them with a static library liba.a located in /usr/local/lib64 into an executable Approach 1 works... (0 Replies)
Discussion started by: magelord
0 Replies

6. UNIX for Advanced & Expert Users

Open a webbrowser link from shell script

Hi All I have a task which is manually submitted from a web browser link, by entering a value. This has an xml code as well. I am looking for options to automate the above to avoid manual intervention/dependency. Is there a way I can achieve this using shell script? Either open the link by... (3 Replies)
Discussion started by: sparks
3 Replies
MSSQL_PCONNECT(3)														 MSSQL_PCONNECT(3)

mssql_pconnect - Open persistent MS SQL connection

SYNOPSIS
resource mssql_pconnect ([string $servername], [string $username], [string $password], [bool $new_link = false]) DESCRIPTION
mssql_pconnect(3) acts very much like mssql_connect(3) with two major differences. First, when connecting, the function would first try to find a (persistent) link that's already open with the same host, username and password. If one is found, an identifier for it will be returned instead of opening a new connection. Second, the connection to the SQL server will not be closed when the execution of the script ends. Instead, the link will remain open for future use (mssql_close(3) will not close links established by mssql_pconnect(3)). This type of links is therefore called 'persistent'. PARAMETERS
o $servername - The MS SQL server. It can also include a port number. e.g. hostname:port. o $username - The username. o $password - The password. o $new_link - If a second call is made to mssql_pconnect(3) with the same arguments, no new link will be established, but instead, the link identifier of the already opened link will be returned. This parameter modifies this behavior and makes mssql_pconnect(3) always open a new link, even if mssql_pconnect(3) was called before with the same parameters. RETURN VALUES
Returns a positive MS SQL persistent link identifier on success, or FALSE on error. EXAMPLES
Example #1 mssql_pconnect(3) using the $new_link parameter <?php // Connect to MSSQL and select the database $link1 = mssql_pconnect('MANGOSQLEXPRESS', 'sa', 'phpfi'); mssql_select_db('php', $link1); // Create a new link $link2 = mssql_pconnect('MANGOSQLEXPRESS', 'sa', 'phpfi', true); mssql_select_db('random', $link2); ?> PHP Documentation Group MSSQL_PCONNECT(3)
All times are GMT -4. The time now is 01:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy