我使用CodeIgniter 2.2.

每次访问页面时,我必须更新数据库1.代码工作,但它每次增加2.

示例:如果总视图= 2,一旦页面被单击,总视图应为3,但数据库中的值为4.

我确信我在控制器中只调用一次add_one_to_view_image模型.

调节器

function view(){

    $view_id =  $this->uri->segment(3);

    if($view_id){
        $this->property->add_one_to_view_image($view_id);
        $prop['prop_detail'] = $this->property->get_single_property_for_view($view_id);
        $prop['prop_imgs'] = $this->property->get_single_property_images($view_id);
        $prop['amenities'] = $this->property->get_single_property_amenities($view_id);
        $prop['latest'] =  $this->home->get_latest_properties();

        $size = sizeof($prop['latest']);
        for($k=0; $k< $size; $k++){
        $Image_name = $this->property->get_property_first_image($prop['latest'][$k]->property_id);
            if($Image_name){
            $prop['latest'][$k]->image=$Image_name[0]->name;
            }else {
                $prop['latest'][$k]->image="";
            }
        }


    $this->load->view('property_view',$prop); 
    }

}

模型

function add_one_to_view_image($id){

  echo "We in add one to views";
  $this->db->where('property_id',$id);
  $this->db->set('views','views+1',FALSE);
  $this->db->update('property_views'); 
 }

我在模型中添加了一个echo语句.它只打印一次..

视图

<!DOCTYPE html>
            <html lang="en-US">
            <head>

                <?PHP $this->load->view('header_links'); ?>


                <title><?PHP echo $prop_detail[0]->title; ?> | lanka Property</title>
                <Meta name="author" content="Sathyabaman - lankaproperty.com">
                <Meta name="description" content="<?PHP echo $prop_detail[0]->full_description; ?>">
                <Meta name="keywords" content="home,land,apartment,house,room,Commercial Building,buy,sell,rent,lease,sri lanka">


            </head>
            <body>
            <div id="wrapper-outer" >
                <div id="wrapper">
                    <div id="wrapper-inner">
                        <?PHP $this->load->view('header_top_user_bar'); ?>
                        <?PHP $this->load->view('header_logo'); ?>
                        <?PHP $this->load->view('navigation'); ?>


                        <!-- CONTENT -->
                        <div id="content"><div class="container">
                <div id="main">
                    <div class="row">
                        <div class="span9">
                            <h1 class="page-header"><?PHP echo $prop_detail[0]->title; ?></h1>

                            <div class="carousel property">
                                <div class="preview">
                                        <li class="active">
                                            <img src="<?PHP echo base_url(); ?>/upload_images/<?PHP echo $prop_imgs[0]->name; ?>" alt="">
                                        </li>

                                </div><!-- /.preview -->

                                <div class="content">

                                    <a class="carousel-prev" href="#">PrevIoUs</a>
                                    <a class="carousel-next" href="#">Next</a>
                                    <ul>

                                        <?PHP foreach ($prop_imgs as $img) : ?>
                                        <li class="active">
                                            <img src="<?PHP echo base_url(); ?>/upload_images/<?PHP echo $img->name; ?>" alt="">
                                        </li>
                                        <?PHP endforeach; ?>

                                    </ul>
                                </div>
                                <!-- /.content -->
                            </div>
                            <!-- /.carousel -->



                            <div class="property-detail">
                                <div class="pull-left overview">
                                    <div class="row">
                                        <div class="span3">
                                            <h2>Overview</h2>

                                    <?PHP foreach ($prop_detail as $dtl) : ?>

                                            <table>

                                                <tr>


                                                    <?PHP   if($dtl->status == 0){?>
                                                    <td style="font-size: 120%;"><strong>Under Approval</strong></td>
                                                    <?PHP } if($dtl->status == 1){?>
                                                    <td style="color:green; font-size: 200%;"><strong>Available!</strong></td>
                                                    <?PHP } if($dtl->status == 2){?>
                                                    <td style="color:red; font-size: 200%;"><strong>Expired!</strong></td>
                                                    <?PHP } if($dtl->status == 3){?>
                                                    <td style="color:red; font-size: 200%;"><strong>Deleted!</strong></td>
                                                    <?PHP } if($dtl->status == 4){?>
                                                    <td style="color:red; font-size: 200%;"><strong>Suspended!</strong></td>
                                                    <?PHP } ?>

                                                </tr>

                                                <tr>
                                                    <th></th>
                                                    <td><br/></td>
                                                </tr>
                                                 <tr>
                                                    <th>Property ID :</th>
                                                    <td> PPTID<?PHP echo $dtl->property_id; ?></td>
                                                </tr>

                                                <tr>
                                                    <th>Price :</th>
                                                    <td><?PHP if($dtl->price == 0){ echo "negotiable"; }
                                                                else {
                                                                    $price_text = (string)$dtl->price; // convert into a string
                                                                    $arr = str_split($price_text,"3"); // break string in 3 character sets
                                                                    $price_new_text = implode(",",$arr);  // implode array with comma

                                                                    echo 'Rs. '.$price_new_text.'/='; 

                                                                } ?>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <th>Property type :</th>
                                                    <td><?PHP echo $dtl->type_name; ?></td>
                                                </tr>
                                                <tr>
                                                    <th>Property size :</th>
                                                    <td><?PHP echo $dtl->size; ?>  <?PHP echo $dtl->size_type; ?></td>
                                                </tr>
                                                <tr>
                                                    <th>Contract type :</th>
                                                    <td><?PHP echo $dtl->contract_type; ?></td>
                                                </tr>

                                                <?PHP if($dtl->bed){ ?>
                                                <tr>
                                                    <th>bedrooms :</th>
                                                    <td><?PHP echo $dtl->bed; ?></td>
                                                </tr>
                                                <?PHP } if($dtl->bath){ ?>
                                                <tr>
                                                    <th>Bathrooms :</th>
                                                    <td><?PHP echo $dtl->bath; ?></td>
                                                </tr>
                                                <?PHP } if($dtl->address){?>
                                                <tr>
                                                    <th>address :</th>
                                                    <td><?PHP echo $dtl->address; ?></td>
                                                </tr>
                                                <?PHP } ?>
                                                <tr>
                                                    <th>Area :</th>
                                                    <td><?PHP echo $dtl->area; ?></td>
                                                </tr>
                                                <tr>
                                                    <th>City :</th>
                                                    <td><?PHP echo $dtl->city; ?></td>
                                                </tr>

                                                <?PHP if($dtl->Contact_name){ ?>
                                                <tr>
                                                    <th>Contact Name :</th>
                                                    <td><?PHP echo $dtl->Contact_name; ?></td>
                                                </tr>
                                                <?PHP } ?>

                                                <tr>
                                                    <th>Contact No 1 :</th>
                                                    <td><strong><?PHP echo chunk_split($dtl->phone_home,3,' '); ?></strong></td>
                                                </tr>

                                                <?PHP if($dtl->phone_hand){ ?>
                                                <tr>
                                                    <th>Contact No 2 :</th>
                                                    <td><strong><?PHP echo chunk_split($dtl->phone_hand,' '); ?></strong></td>
                                                </tr>
                                                <?PHP } ?>

                                                <tr><td colspan="2">
                                                <br/>
                                                <a class="btn btn-primary btn-large list-your-property">
                                                 Contact : <?PHP echo chunk_split($dtl->phone_home,' '); ?></a>
                                                </td></tr>

                                            </table>
                                        </div>
                                        <!-- /.span2 -->
                                    </div>
                                    <!-- /.row -->
                                </div>

                                <p><?PHP echo nl2br($dtl->full_description); ?>.</p>


                            <?PHP endforeach; ?>
            <br/><br/>
                                <h2>General amenities</h2>

                                <div class="row">
                                    <ul class="span2">
                                        <li class="<?PHP if($amenities[0]->Gym==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Gym
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Air_conditioning==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Air Conditioning
                                        </li>
                                        <li class="<?PHP if($amenities[0]->internet==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Internet
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Wifi==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Wifi
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Lift==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Lift
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Furnished==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Furnished
                                        </li>

                                    </ul>
                                    <ul class="span2">
                                        <li class="<?PHP if($amenities[0]->Television==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Television
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Hot_Water==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Hot Water
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Smoking_allowed==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Smoking Allowed
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Pets_allowed==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Pets Allowed
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Garage==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Garage
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Secure_parking==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Secure parking
                                        </li>

                                    </ul>
                                    <ul class="span2">
                                        <li class="<?PHP if($amenities[0]->Swimming_Pool==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Swimming Pool
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Tennis_court==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Tennis court
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Balcony==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Balcony
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Fenced==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Fenced
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Back_up_Generator==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Back Up Generator
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Garden==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Garden
                                        </li>

                                    </ul>
                                    <ul class="span2">
                                        <li class="<?PHP if($amenities[0]->Waterfront==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Waterfront
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Ocean_View==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Ocean View
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Security==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Security
                                        </li>
                                        <li class="<?PHP if($amenities[0]->Water_Tank==1){echo 'checked'; }else{echo 'plain';} ?>">
                                            Water Tank
                                        </li>

                                    </ul>
                                </div>

                                <!--
                                <h2>Map</h2>

                                <div id="property-map"></div> -->

                            </div>

                        </div>
                        <div class="sidebar span3">




            <div class="widget contact">
                <div class="title">
                    <h2 class="block-title">Contact Owner</h2>
                </div><!-- /.title -->

                <div class="content">
                    <form method="post" id="frm_contact_owner">

                        <div class="alert alert-success" id="co_sucess_message"  style="display: none">
                            <button type="button" class="close" data-dismiss="alert">×</button>
                            <strong>Message successfully send to owner!. <br/>Thank you!</strong>
                        </div>
                        <input type="hidden" name="co_property_id" value="<?PHP echo $dtl->property_id; ?>">

                        <div class="control-group">
                            <label class="control-label" >
                                Name
                                <span class="form-required" title="This field is required.">*</span>
                                <span class="form-required" id="co_name_error" title="This field is required."></span>
                            </label>
                            <div class="controls">
                                <input type="text" name="co_name" id="co_name">
                            </div><!-- /.controls -->
                        </div><!-- /.control-group -->

                        <div class="control-group">
                            <label class="control-label" >
                                Email
                                <span class="form-required" title="This field is required.">*</span>
                                <span class="form-required" id="co_email_error" title="This field is required."></span>
                            </label>
                            <div class="controls">
                                <input type="text"  name="co_email" id="co_email">
                            </div><!-- /.controls -->
                        </div><!-- /.control-group -->

                        <div class="control-group">
                            <label class="control-label" >
                                Message
                                <span class="form-required" title="This field is required.">*</span>
                                <span class="form-required" id="co_message_error" title="This field is required."></span>
                            </label>

                            <div class="controls">
                                <textarea name="co_message" id="co_message"></textarea>
                            </div><!-- /.controls -->
                        </div><!-- /.control-group -->

                        <div class="form-actions">
                            <input type="submit" id="co_send" class="btn btn-primary arrow-right" value="Send">
                             <img id="co_ajax_image" src="<?PHP echo base_url(); ?>html/assets/img/ajax_loader.gif" alt="" style="float: left; display:none">
                        </div><!-- /.form-actions -->
                    </form>
                </div><!-- /.content -->
            </div><!-- /.widget -->


            <div class="widget properties last">
                <div class="title">
                    <h2>Latest Properties</h2>
                </div><!-- /.title -->

                <div class="content">


                <?PHP foreach ($latest as $latest_pro) :?>

                    <div class="property">
                        <div class="image">
                            <?PHP
                            if($latest_pro->image){ 
                                $image_name = base_url().'upload_images/'.$latest_pro->image;
                            }else{
                                $image_name = base_url().'html/assets/img/tmp/property-small-5.png';
                            }
                            ?>
                            <a href="<?PHP echo base_url(); ?>property/view/<?PHP echo $latest_pro->property_id; ?>/<?PHP echo str_replace(' ','_',$latest_pro->title); ?>"></a>
                            <img src="<?PHP echo $image_name; ?>"  alt="">
                        </div><!-- /.image -->

                        <div class="wrapper">
                            <div class="title">
                                <h3>
                                    <a href="<?PHP echo base_url(); ?>property/view/<?PHP echo $latest_pro->property_id; ?>/<?PHP echo str_replace(' ',$latest_pro->title); ?>"><?PHP echo substr($latest_pro->title,16); ?>..</a>
                                </h3>
                            </div><!-- /.title -->
                            <div class="location"><?PHP echo $latest_pro->area; ?>,<?PHP echo $latest_pro->city; ?></div><!-- /.location -->
                            <div class="price">
                            <?PHP if($latest_pro->price == 0){ echo "negotiable"; }
                                  else {
                                    $price_text = (string)$latest_pro->price; // convert into a string
                                    $arr = str_split($price_text,"3"); // break string in 3 character sets
                                    $price_new_text = implode(",$arr);  // implode array with comma

                                    echo 'Rs. '.$price_new_text.'/='; 

                                } ?>
                            </div><!-- /.price -->
                        </div><!-- /.wrapper -->
                    </div><!-- /.property -->

                <?PHP endforeach; ?>



                </div><!-- /.content -->
            </div><!-- /.properties -->
                        </div>
                    </div>
                </div>
            </div>
                </div><!-- /#content -->
            </div><!-- /#wrapper-inner -->

                <?PHP $this->load->view('footer'); ?>

            </div><!-- /#wrapper -->
            </div><!-- /#wrapper-outer -->

                <?PHP $this->load->view('footer_setting_palette'); ?>
                <?PHP //$this->load->view('property_filter_ajax'); ?>
                <?PHP $this->load->view('say_hello_ajax'); ?>
                <?PHP $this->load->view('property_contact_owner'); ?>

            </body>
            </html>
我知道这是完全错误的,但检查 this出来….

我也有同样的问题很久以前,但经过1个星期的头痛我来了解这个解决方案.

我从this链接得到解决方案,看看第二个答案.最初我也没有认真对待这个解决方案,但最终它为我工作了:)

解决方案:

当您的代码运行两次时,请确保您的网站上没有标有空的src =“”属性或任何CSS样式引用空的URL(如background:url();).

php – CodeIgniter更新查询执行两次的更多相关文章

  1. 从iOS应用程序发送帖子到PHP脚本不工作…简单的解决方案就像

    我之前已经做了好几次了但是由于某些原因我无法通过这个帖子…我尝试了设置为_POST且没有的变量的PHP脚本……当它们未设置为发布时它工作精细.这是我的iOS代码:这里是PHP的一大块,POST变量不在正确的位置?我想这对于更有经验的开发人员来说是一个相当简单的答案,感谢您的帮助!解决方法$_POST是一个数组,而不是一个函数.您需要使用方括号来访问数组索引:

  2. swift学习2 元组 tuples

    swift中出现了一种新的数据结构,非常牛掰的元组tuples如果懂PHP的猿,会发现这个元组和PHP的数组非常类似,同样是可以默认不指定key,也可以指定key目前的学习疑问是,如何进行元组的遍历?

  3. 尝试使用swift mailer,gmail smtp,php发送邮件

    这里是我的代码:在运行时出现此错误…

  4. 离子运行android似乎工作,但该应用程序没有在手机上启动,为什么?

    我的手机处于打开状态,处于调试模式,我已通过adbdevices-l确认了这一点.当我运行离子运行android时,我得到Ionic声称应用程序启动时的输出,但手机上没有任何反应.我使用Android4.4.4的Nexus5.androidapp中的index.html:解决方法键入离子信息并检查已安装的Cordova版本.如果你有v5.0.0现在需要一个新的插件,否则所有的http请求都被阻止.

  5. PHP使用JpGraph绘制折线图操作示例【附源码下载】

    这篇文章主要介绍了PHP使用JpGraph绘制折线图操作,结合实例形式分析了php使用JpGraph的相关操作技巧与注意事项,并附带源码供读者下载参考,需要的朋友可以参考下

  6. jQuery的Cookie封装,与PHP交互的简单实现

    下面小编就为大家带来一篇jQuery的Cookie封装,与PHP交互的简单实现。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  7. PHP+jquery+CSS制作头像登录窗(仿QQ登陆)

    本篇文章介绍了PHP结合jQ和CSS制作头像登录窗(仿QQ登陆),实现了类似QQ的登陆界面,很有参考价值,有需要的朋友可以了解一下。

  8. 如何在PHP环境中使用ProtoBuf数据格式

    这篇文章主要介绍了如何在PHP环境中使用ProtoBuf数据格式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

  9. PHP rsa加密解密算法原理解析

    这篇文章主要介绍了PHP rsa加密解密算法原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

  10. PHP cookie与session会话基本用法实例分析

    这篇文章主要介绍了PHP cookie与session会话基本用法,结合实例形式分析了PHP cookie与session会话基本存储、设置、删除等相关使用方式,需要的朋友可以参考下

随机推荐

  1. PHP个人网站架设连环讲(一)

    先下一个OmnihttpdProffesinalV2.06,装上就有PHP4beta3可以用了。PHP4给我们带来一个简单的方法,就是使用SESSION(会话)级变量。但是如果不是PHP4又该怎么办?我们可以假设某人在15分钟以内对你的网页的请求都不属于一个新的人次,这样你可以做个计数的过程存在INC里,在每一个页面引用,访客第一次进入时将访问时间送到cookie里。以后每个页面被访问时都检查cookie上次访问时间值。

  2. PHP函数学习之PHP函数点评

    PHP函数使用说明,应用举例,精简点评,希望对您学习php有所帮助

  3. ecshop2.7.3 在php5.4下的各种错误问题处理

    将方法内的函数,分拆为2个部分。这个和gd库没有一点关系,是ecshop程序的问题。会出现这种问题,不外乎就是当前会员的session或者程序对cookie的处理存在漏洞。进过本地测试,includes\modules\integrates\ecshop.php这个整合自身会员的类中没有重写integrate.php中的check_cookie()方法导致,验证cookie时返回的username为空,丢失了登录状态,在ecshop.php中重写了此方法就可以了。把他加到ecshop.php的最后面去就可

  4. NT IIS下用ODBC连接数据库

    $connection=intodbc_connect建立数据库连接,$query_string="查询记录的条件"如:$query_string="select*fromtable"用$cur=intodbc_exec检索数据库,将记录集放入$cur变量中。再用while{$var1=odbc_result;$var2=odbc_result;...}读取odbc_exec()返回的数据集$cur。最后是odbc_close关闭数据库的连接。odbc_result()函数是取当前记录的指定字段值。

  5. PHP使用JpGraph绘制折线图操作示例【附源码下载】

    这篇文章主要介绍了PHP使用JpGraph绘制折线图操作,结合实例形式分析了php使用JpGraph的相关操作技巧与注意事项,并附带源码供读者下载参考,需要的朋友可以参考下

  6. zen_cart实现支付前生成订单的方法

    这篇文章主要介绍了zen_cart实现支付前生成订单的方法,结合实例形式详细分析了zen_cart支付前生成订单的具体步骤与相关实现技巧,需要的朋友可以参考下

  7. Thinkphp5框架实现获取数据库数据到视图的方法

    这篇文章主要介绍了Thinkphp5框架实现获取数据库数据到视图的方法,涉及thinkPHP5数据库配置、读取、模型操作及视图调用相关操作技巧,需要的朋友可以参考下

  8. PHP+jquery+CSS制作头像登录窗(仿QQ登陆)

    本篇文章介绍了PHP结合jQ和CSS制作头像登录窗(仿QQ登陆),实现了类似QQ的登陆界面,很有参考价值,有需要的朋友可以了解一下。

  9. 基于win2003虚拟机中apache服务器的访问

    下面小编就为大家带来一篇基于win2003虚拟机中apache服务器的访问。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  10. Yii2中组件的注册与创建方法

    这篇文章主要介绍了Yii2之组件的注册与创建的实现方法,非常不错,具有参考借鉴价值,需要的朋友可以参考下

返回
顶部