LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 10-19-2006, 01:35 PM   #1
Jayla
Member
 
Registered: Nov 2005
Location: Suffolk, UK
Distribution: kubuntu 9.04
Posts: 188

Rep: Reputation: 30
Adding users with PHP (pass php variables to Expect script)


Hi there, I could't find an answer already here so I've made a post, forgive me if the answer is here but I couldnt find it.

Ok so here goes, I have a php page that takes a username in( from textbox), i want to send that username thru to an Expect script

The expect script will log in as root, add the user, do whatever else i decide, then switch out of root.

heres what I've come up with so far...

The first page, with the form that takes in the username
Code:
<html>
<head>
<title>Assignment</title>
</head>

<body>

<h1>The worst User management ever...</h1><p>
<form name="userdata" action="process.php" method="post">
Username:<input name="username" type="text"><br>
Password:<input name="password" type="text"><br>
Message:<br>

<br>
<input type="submit">
</form>
</body>
</html>

The username gets passed into this php file, and echoed back on the screen for confirmation, this part works fine
Code:
<html>
<body>

<?php
$username = $_POST['username'];
$password = $_POST['password'];
//$username = "jack";
//$password = "1234";

//error_reporting(E_ALL);

//Run some linux script to actually ADD the user, only passing 1 var till //i can work it out

exec("/opt/lampp/htdocs/wse/adding.exp". $username);

//print($bashreturn);
echo "Your Username is ". $username .".<br>";
echo "Your Password ir ". $password .".<br>";


?>
<p>
<a href="index.html">Go back and try again</a>
</body>
</html>

the username should be sent here, then added to the linux box, but this doesn't work
Code:
#! /usr/bin/expect -f

username=$1

set force_conservative 0

spawn su
match_max 100000
send -- "password\r"
send -- "useradd username\r"
send -- "exit\r"
expect eof
I think that the initial data is being passed to the second php file becuase it is echoed back on screen, but as for being sent to the exp script I have no idea

Can someone please help me solve this problem, I'm having little luck finding tutorials/solutions on the internet

Thank you for your time

J
 
Old 10-20-2006, 10:44 AM   #2
senyahnoj
Member
 
Registered: Jul 2004
Location: Gloucestershire, UK
Distribution: Ubuntu, Debian & Gentoo
Posts: 74

Rep: Reputation: 16
At a glance, you would need a space between adding.exp and $username

So change

PHP Code:
exec("/opt/lampp/htdocs/wse/adding.exp"$username); 
to

PHP Code:
exec("/opt/lampp/htdocs/wse/adding.exp "$username); 
I don't know anything about expect but the PHP looks alright to me. You can get the browser to display the output from your exec command like this:

PHP Code:
exec($cmd,$out);
print(
implode("<br>",$out)); 
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to pass a row to another PHP script bahadur Programming 5 12-24-2011 01:07 AM
pass variables through hyperlink in php ALInux Programming 2 12-23-2005 01:27 PM
Adding javascript variables to a PHP query Elijah Programming 7 11-07-2004 07:28 PM
Pass multiple URL variables PHP agallant Programming 3 10-21-2004 07:29 PM
How to pass arguments from $prompt for php script ukjairaj Linux - Software 4 06-25-2004 11:14 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 03:16 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration