/home/mjc1/public_html/manage/m_cusrecommend.inc.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
include("./_common.php");

@
extract($_GET);
@
extract($_POST);
?>

<style>
textarea[name='result_txt'] { resize:none; border:1px solid #ccc; padding:10px;}
</style>

<form name="result_form" method="post" id="result_form">
    <?php
        $sql 
"select result from mBoard_cus_recommend where idx = {$idx}";
        
$res mysql_query($sql,$connect_web);
        
$info mysql_fetch_array($res);
    
?>
    <input type="hidden" name="mode" value="resultmode">
    <div style="text-align:center;">
        <input type="hidden" name="idx" value="<?php echo $idx;?>">
        <textarea name="result_txt" rows="20" cols="100"><?php echo $info['result'];?></textarea>
    </div>
</form>