Jump to content

Chad Seibert

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Chad Seibert's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, Community I was working on a simple converter when I realized that by not setting the id param of the option tag, it wasn't going to send the value of the dropdown box to my php script.??? I had this to start with: function ReplaceWithOption($stringtoreplace, $numtabs) { //This creates a string that contains the number of tabs required to tab in and align the code for($x=0; $x < $numtabs; $x++) $tabs .= "\t"; //Replaces all instances of ', ' with </option>\n<option> and aligns it $ret = preg_replace("/, /", "</option>\n".$tabs."<option>", $stringtoreplace); //This adds a blank option at the beginning and adds the starting and ending tags the above code //doesn't do $ret = "<option></option>\n".$tabs."<option>".$ret."</option>"; return $ret; } But is there an easy way to get this to insert the id into it? Thanks for any assistance Chad Seibert
  2. Hello, I just got my email system setup using sendmail. But now, how can I create a script to create the new user. "adduser -D test" still prompts for information, so how can I set it to used the default uid, group, etc. Thanks for your help ! Chad Seibert
  3. Yes, I own the server. It's running Slackware 11.
  4. Any resources/help to guide me along. Thanks for the assistance !
  5. When someone comes and registers on my website, like Bob Smith, I want to be able to create the email address bob_smith@mywebsite.com.
  6. Hello, Community! Is it possible to create email addresses in php code? I have checked the documentation and can't find it anywhere. Sorry if this is a dumb question. Thanks for any assistance, Chad Seibert
  7. Hello, Community This is my first post here. Please enlighten me if I mess up some how As the administrator of my website, I would like to be able to create email accounts using a web interface. Is it possible to create new email accounts using PHP + IMAP extensions? Thanks for any advice, Chad Seibert
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.