0

私はこのサイトを初めて使用するので、間違ったことをした場合は申し訳ありません。

基本的に、私は現在、顧客に 9 つのドロップダウンの質問を提供する PHP (および JavaScript) の Paypal フォームを持っています。このデータを入力した後、Paypal ボタンをクリックすると、選択に応じた金額で価格が自動的に表示されます。

ただし、Paypal には説明の制限があるため、このフォームでユーザーに Paypal ページを送信し、データ入力を記載したメールも送信できるかどうか疑問に思っていました。

これはカスタム ゲーム コントローラー ビジネスのためのものなので、カスタマイズの選択肢をすべて知る必要があります。

データベースは複雑すぎるようです...私は常に選択肢を更新し続けるので.

ドロップダウン ビットを並べ替え、Paypal ボタンを並べ替えました。変数と価格に .csv ファイルを使用すると、すべて正常に機能します。ただし、自分にメールを送信するには必要です。

誰でもこれを行うことができますか?

現在のコードを確認する必要がある場合は、お知らせください。誰かが私のためにこれをやってくれたら本当にできる。あなたの潜在的なクライアントに喜んで詳細なレビューを提供します.

<?php
class Controller {


    public $currency;
    public $shipping;

    public $controllerDir = '';

    public $question_four;
    public $question_five;
    public $question_six;
    public $question_seven;
    public $question_eight;
    public $question_nine;
    public $question_ten;
    public $question_eleven;
    public $question_twelve;

    public $show_question_four   = false;
    public $show_question_five   = false;
    public $show_question_six        = false;
    public $show_question_seven  = false;
    public $show_question_eight  = false;
    public $show_question_nine   = false;
    public $show_question_ten        = false;
    public $show_question_eleven = false;
    public $show_question_twelve = false;

    public function readCSV( $file_name ) {

        if ( file_exists($file_name) ) {
            $this->options = '';
            $file = fopen(  $file_name, 'r' );
            while ($row = fgetcsv($file)) {
                $this->options .= '<option value="' . $row[1] . '">' . $row[0] . '</option>';
            }
        }
        else
            $this->options = '<option value="">- Please answer question above -</option>';

        return $this->options;
    }

    public function ShowControllerForm() {

        ?>
        <div id="ctrl_wrapper">
            <form id="ctrlForm" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
            <table>
                <tr>
                    <th style="text-align: left">
                        <H1>Controller Customization</H1>
                    </th>
                </tr>
                <tr>
                    <td>
                        Would you like to customise a brand new controller or send in your own?
                    <br />
                        <select name="question_one" id="question_one">
                            <option value="">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_one.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <tr>
                    <td>
                        How do you want to add colour/design to your controller?
                    <br />
                        <select name="question_two" id="question_two">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_two.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <tr>
                    <td>
                        What design/colour would you like your controller to have?
                            <br />
                        <select name="question_three" id="question_three">
                            <option value="" selected="selected">- Please select -</option>
                        </select>
                    </td>
                </tr>
                <?php if ($this->show_question_four) : ?>
                <tr>
                    <td>
                        What colour would you like the A, B, X and Y buttons?
                            <br />
                        <select name="question_four" id="question_four">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_four.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <?php endif; ?>
                <?php if ($this->show_question_five) : ?>
                <tr>
                    <td>
                        What appearance do you wish your guide button to have?
                            <br />
                        <select name="question_five" id="question_five">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_five.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <?php endif; ?>
                <?php if ($this->show_question_six) : ?>
                <tr>
                    <td>
                        Please select a colour for the four LEDs around the guide button.
                            <br />
                        <select name="question_six" id="question_six">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_six.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <?php endif; ?>
                <?php if ($this->show_question_seven) : ?>
                <tr>
                    <td>
                        What colour do you wish the thumbsticks to be?
                            <br />
                        <select name="question_seven" id="question_seven">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_seven.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <?php endif; ?>
                <?php if ($this->show_question_eight) : ?>
                <tr>
                    <td>
                        What colour do you want the D-Pad to be?
                            <br />
                        <select name="question_eight" id="question_eight">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_eight.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <?php endif; ?>
                <?php if ($this->show_question_nine) : ?>
                <tr>
                    <td>
                        If any, what package of MODs would you like installed?
                            <br />
                        <select name="question_nine" id="question_nine">
                            <option value="" selected="selected">- Please select -</option>
                            <?php echo $this->readCSV( $this->controllerDir . 'csv/question_nine.csv' ); ?>
                        </select>
                    </td>
                </tr>
                <?php endif; ?>
                <tr>
                    <td>Current Controller Price
                        <br />
                        <input type="text" readonly="readonly" id="amount" name="amount" value="0.00"><?php echo $this->currency; ?>
                    </td>
                </tr>
                <tr>
                    <td>
                        Shipping <b>UK Only</b> (Special Next-Day Delivery by 1pm)
                    <br />
                        <input type="text" readonly="readonly" id="shipping" name="shipping" value="<?php echo $this->shipping; ?>"><?php echo $this->currency; ?>
                    </td>
                </tr>
                <tr>
                    <td><b>Total</b> <i>(Current Price + Shipping)</i>
                        <br />
                        <input type="text" readonly="readonly" id="total" name="total" value="0.00"><?php echo $this->currency; ?>
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="hidden" name="cmd" value="_xclick">
                        <input type="hidden" name="business" value="myemail@somewhere.com">
                        <input type="hidden" name="lc" value="UK">
                        <input type="hidden" id="item_name" name="item_name" value="Controller">
                        <!--<input type="hidden" id="amount" name="amount" value="0.00">-->
                        <input type="hidden" name="currency_code" value="GBP">
                        <input type="hidden" name="button_subtype" value="services">
                        <input type="hidden" name="no_note" value="0">
                        <!--<input type="hidden" id="shipping" name="shipping" value="0.00">-->
                        <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
                        <input type="hidden" name="os0" value ="here's a bit of a description">
                        <hr size="1"/>
                        <input type="submit" id="submit" value="Purchase Now !" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" >
                    </td>
                </tr>
            </table>

            <!--<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">-->
            </form>

            <div id="dialog-message" title="Please select an option" style="display:none">
                <p style="padding-top:10px"></p>
            </div>

            <div id="loader"></div>

            <script>
                function ShowMessage( msg ) {
                    $( "#dialog-message p" ).text(msg);
                    $( "#dialog-message" ).dialog({modal: true, width: 350, buttons: {OK: function() {$( this ).dialog( "close" );}}});
                }   
            </script>
        </div>
        <?php

    }

}

?>

4

1 に答える 1

0

できることは、フォームを PHP スクリプトに送信することです。次に、その PHP スクリプトが注文情報をデータベースに保存し、電子メールなどで送信します。スクリプトが完了したら、注文金額を PayPal にリダイレクトするだけです。 . 例:

<?php
if (isset($_POST['submit'])) {
    // get user's options and calculate price
    // either save to database, send order details via email, or (preferably) both
    // send the user to PayPal to pay for purchase
    $query_data = array(
        'business' => 'your-paypal-email-address',
        'cmd' => '_xclick',
        'item_name' => 'Order #' . $order_id, // $order_id could be last_insert_id() from saving database
        'amount' => '100.00', // the cost of the item
        'shipping' => '10.00' // the cost of shipping the item
    );
    header('Location: https://www.paypal.com/cgi-bin/websrc/?' . http_build_query($query_data));
    exit;
}

価格を計算したり、データベースに保存したり、注文の詳細を電子メールで送信したりする部分を具体化する必要がありますが、それで十分です。これは主に、PHP スクリプトで PayPal にリダイレクトする方法を示すためのものです。

于 2013-09-05T20:46:56.453 に答える