Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting

Notices

navaldesign navaldesign is online now

General & Forum Moderator

Visitor Messages

Showing Visitor Messages 21 to 30 of 30
  1. jasonshadlock
    09-08-2008 06:21 PM - permalink
    jasonshadlock
    Hi there, I posted an advert under approved freelance providers offering my services for graphic and webdesign lupuscreative.com however this seems to have been removed - any ideas? Is there a formal process for approval?
  2. porthair
    09-02-2008 02:29 PM - permalink
    porthair
    Thanks Nava! Don't suppose you know of tutorials anywhere or exactly how I would install the script and set up my online booking??

    Anna
  3. Brn2Crz
    08-31-2008 02:40 PM - permalink
    Brn2Crz
    Hi Naval. I have a web page that is www.bluefish.com. Besides travel we import/export and I take messages on the buy/sell forum. My last two posts to "buying from china" have not been posted. Could you help me?
  4. navaldesign
    08-29-2008 04:35 AM - permalink
    navaldesign
    Benjamin,

    This is certainly not the kind of use that was intended for the private message system. Please post in the forum in the future.
    Now, the countries: there are no countries hardcoded in this script, they are retrieved either from a file or from a table in the database. You should add them there.

    Payments: i can't really say anything without seeing that part of the script.
  5. Mr Benjamin
    08-28-2008 08:17 PM - permalink
    Mr Benjamin
    And another thing the payment system ther are only two options paypal and credit card and i want to add two other options 1:check 2:Bank Transfer how do i go about doing that?

    Thank you.
  6. Mr Benjamin
    08-28-2008 08:14 PM - permalink
    Mr Benjamin
    Hey naval how you doing? I got a script for my business directory but am having complications.
    the thing is that in the registration form some of the Caribbean islands that i want are not there some of the Caribbean islands are not included and that is a pain for me i have the script here could you take a look and tell me what you think bout this and how can i add the countries that i want

    Thank You.




    <SCRIPT language=Javascript>
    function action1()
    {
    document.RegForm.action='register.php';
    document.RegForm.submit();
    }
    </SCRIPT>

    <form method=post action="register.php" enctype="multipart/form-data" name=RegForm onsubmit="return CheckRegister();">
    <table align=center width=300>
    <caption align=center><font face=verdana size=2><b>Registration Form</b></font><br><?=$error?></caption>
    <tr>
    <td align=right>Username:</td>
    <td><input type=text name=NewUsername value="<?=$_POST[NewUsername]?>"></td>
    </tr>

    <tr>
    <td align=right>Password:</td>
    <td><input type=password name=p1></td>
    </tr>

    <tr>
    <td align=right>Confirm Password:</td>
    <td><input type=password name=p2></td>
    </tr>

    <tr>
    <td align=right>Company name:</td>
    <td><input type=text name=CompanyName value="<?=$_POST[CompanyName]?>"></td>
    </tr>

    <tr>
    <td align=right>Category:</td>
    <td><? $qt = "select * from yellow_categories order by CategoryName";
    $rt = mysql_query($qt) or die(mysql_error());
    if(mysql_num_rows($rt) > '0')
    {?>
    <select name=CategoryID onchange=action1()>
    <? while($at = mysql_fetch_array($rt))
    {?>
    <option value="<?=$at[CategoryID]?>" <? if($_POST[CategoryID]==$at[CategoryID]){?>selected<?}?>><?=$at[CategoryName]?></option>
    <?}?>
    </select>
    <?}?>
    </td>
    </tr>
    <tr>
    <td align=right>Sub Category:</td>
    <td><? $qt = "select * from yellow_subcat where rootcatid='$_POST[CategoryID]' order by subcatname";
    $rt = mysql_query($qt) or die(mysql_error());
    if(mysql_num_rows($rt) > '0')
    {?>
    <select name=SubCategoryID>
    <? while($at = mysql_fetch_array($rt))
    {?>
    <option value="<?=$at[subcatid]?>" selected><?=$at[subcatname]?></option>
    <?}?>
    </select>
    <?}?>
    </td>
    </tr>

    <tr>
    <td align=right>First Name:</td>
    <td><input type=text name=FirstName value="<?=$_POST[FirstName]?>"></td>
    </tr>

    <tr>
    <td align=right>Last Name:</td>
    <td><input type=text name=LastName value="<?=$_POST[LastName]?>"></td>
    </tr>

    <tr>
    <td align=right>Address:</td>
    <td><input type=text name=address value="<?=$_POST[address]?>"></td>
    </tr>

    <tr>
    <td align=right>City:</td>
    <td><input type=text name=city value="<?=$_POST[city]?>"></td>
    </tr>

    <tr>
    <td align=right>State:</td>
    <td><input type=text name=state value="<?=$_POST[state]?>"></td>
    </tr>
    <tr>
    <td align=right>Zip:</td>
    <td><input type=text name=zip value="<?=$_POST[zip]?>"></td>
    </tr>
    <tr>
    <td align=right>Country:</td>
    <td><?=country("0");?></td>
    </tr>

    <tr>
    <td align=right>Phone:</td>
    <td><input type=text name=phone value="<?=$_POST[phone]?>"></td>
    </tr>

    <tr>
    <td align=right>Cellular:</td>
    <td><input type=text name=cellular value="<?=$_POST[cellular]?>"></td>
    </tr>

    <tr>
    <td align=right>Pager:</td>
    <td><input type=text name=pager value="<?=$_POST[pager]?>"></td>
    </tr>

    <tr>
    <td align=right>Email:</td>
    <td><input type=text name=email value="<?=$_POST[email]?>"></td>
    </tr>
    <tr>
    <td align=right>Agreement:</td>
    <td><?=$aset[Agreement]?></td>
    </tr>

    <tr>
    <td>&nbsp;</td>
    <td>

    <input type=submit name=s1 value="Submit"></td>
    </tr>

    </table>
    </form>
  7. porthair
    08-28-2008 04:44 PM - permalink
    porthair
    Hi!! Am looking to create an online booking system on my site and looking through all the forums your name gets mentioned quite a bit on this subject!! It's for a hair salon and what I want it to do is rather complicated but I am convinced I can do it!!! My site is www.porthair.co.uk. Hope you can give me some guidelines and apparently I'l need a script????

    Thanks

    Anna
    (porthair)
  8. Bayea
    08-26-2008 12:47 AM - permalink
    Bayea
    Hi, it sounds like you are the go to guy for pay pal stuff
    I hope you can help with this. I sell hand made clock on my web site. i want to offer options either in drop down form or button form, dosent matter
    wood type: walnut, maple cherry, oak
    and stain colors: no stain, golden oak, cherry, walnut.
    when the customer selects what they want then hits the add to cart button for pay pal, i want a email coming to me with the type of clock, wood type and stain color if any.

    Who can i do this in BV? or can you direct me to where i can find out. please.
    www.normaswoodworking.com

    i dont like the way it is currently set up. seems really confusing.
    thank you !!
    norma
  9. kannan2427
    08-25-2008 07:49 AM - permalink
    kannan2427
    hello how can i build my database in vodahost website create
  10. joeann4love
    08-25-2008 12:40 AM - permalink
    joeann4love
    hello

About Me

  • About navaldesign
    Location
    Italy
    Interests
    Boats, computers, Internet
    Occupation
    Naval Architect - Marine Engineer
  • Signature
  • Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

    Statistics

    Total Posts
    Visitor Messages
    General Information

    Friends

    Showing Friends 1 to 30 of 34

    All times are GMT +1. The time now is 06:33 AM.


    Powered by vBulletin® Version 3.7.4
    Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
    Search Engine Friendly URLs by vBSEO 3.2.0 RC7
    2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176