I am software Engineer At Advance Corporate Solutions.I love programming.
- Interests
- Programming,Footbal,Cricket,Badminton
- PC Specs
- core i5
32 Posted Topics
Re: Hello, Your first line of code does't make sense. `$profile = companyprofile::where($userid)-get();` There are two way to do this. First: `$profile = companyprofile::find($userid);` Second : `$profile = companyprofile::where('user_id',$userid)->first();` Please try to do in this way. Regards MSN | |
![]() | Re: Sublime Text is best.I have use dreamvewer as well as netbeans but I have enjoy using sublime. |
Re: Check the name of the action file.when you post the data it do not find the file name that you given. | |
Re: <?php $bad_login_limit = 3; $lockout_time = 600; $first_failed_login, failed_login_count; // retrieve from DB if( ($failed_login_count >= $bad_login_limit) && (time() - $first_failed_login < $lockout_time) ) { echo "You are currently locked out."; exit; // or return, or whatever. } else if( /* login is invalid */ ) { if( time() - … | |
# Security for Wordpress and Codeigniter # I want to integrate wordpress and codeigniter and I am confuse about security.My admin panel will be in codeigniter and frontend in wordpress.what type of security is there. | |
Hi, I have a table in which I have Use ON and OFF status and I want to implement in laravell.What I have to do that it will work properly. Thanks! | |
Re: You can simply do in this way. `<a onClick="return confirm('Are you sure you want to delete this')" href="#">Delete</a>` | |
Re: You can use javascript to add the values.I have use this before.I have radio buttons that have the values and i add these values by clicking on the radio button.I think this will help you little bit. var Coins = 0; $(document).ready(function() { $('.coin_chk').change(function (e) { if ($(this).attr("checked")) { Coins … | |
Re: <a class="field_delete" onClick="return confirm('Are you sure you want to delete')" href="#">Delete</a> | |
Re: what is the problem that you are facing.please mention your problem completely. thanks ![]() | |
## I want to get little bit idea ## I am using 2checkout.i have use the redirect url for success message but how can i get the error message and what are the error message that can be occur after completion of all the requirements. Thanks. | |
I want to fix unsaving iframe in post, page n content of admin -panel.need urgent help. | |
I need Code for Tracking Aramex API.I have found tutorial on their website but i am facing problem to do it. Thanks | |
I want to make a payment method for bank transfer using php. | |
I am facing the problem that the scroll is not moving to the top if any validation error occur. | |
I have a question that I want to print out the result that I have calculated using php.not confuse with(print or echo) I am asking for page print. | |
Re: In textarea you are trying to echo set_value() similar to input field.but in textarea value can retain only if you giving the value between<textarea><?php echo set_value('name'); ?></textarea> | |
I need help to craete a credit card payment method in php. Thanks | |
Re: this is wrong in your code.you have to use the folder name.this is only work in css. include('../../datab.php'); replace include('your folder/datab.php') | |
Re: RewriteEngine on RewriteCond $1 !^(index\.php|assets|css|js|images|ckeditor|uploads|swf|fonts|theme|robots\.text|get_capcha\.php|ajax|img|prettify) RewriteRule ^(.*)$ /your project name/index.php/$1 [L] | |
Re: I am giving you my login controller code.I think this will help You little bit.But I am using codeigniter. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Login extends CI_Controller { public function __construct(){ parent::__construct(); $this->load->model('common_model'); } // :::::::::::::::::::::::::::::::::::::::::::::::::: public function index() { $this->form_validation->set_rules('email', 'email', 'trim|required|valid_email'); $this->form_validation->set_rules('password', … | |
/* -------------Physical Quantities------------Available Quantities * 51 50 * 51 50 * 63 62 * * ********************************************************** this is my table which confusing me too much.Error in this code is that when an order is processed it will add 1 to all the physical quantities,this product have four colours and i … | |
![]() | Re: The main difference between Get and Post is that when we use Get our data show in url and Post do not show any data and that's why for Secure data post method is preffered. you can send only 2MB data using Get Method and Unlimited using Post method. |
I am facing the problem that in my inventory my Physical quantity not matching to my available quantity.I have color option and If i select 10 products it minus 10 products from all the colors.this is my code <? /*********************************************************************************************\ *********************************************************************************************** ** ** ** My Shop ** ** Version 1.0 … | |
I want to make site similar to [filehippo](http://www.filehippo.com),and I want to get all the content of filehippo.how can it be done? | |
![]() | Re: Simply master page is a page at which we show our all pages. for this purpose we name this page as dashboard,template or home page. we include all the css and js file in this page. we make 3 parts in master page. 1:header: In this part we include css,js … |
I want To make a file downloadable using codeigniter. ![]() | |
Re: //Replace this path by "c:\xampp\htdocs\free-prowebsite/site_pro/photos/" //This "c:/xampp/htdocs/free-prowebsite/site_pro/photos/" //replace all the paths similar to this.I think this will work. | |
Re: Can you try mysql at the place of mysqli. I think this will help. | |
`$iCustomerId = IO::intValue("CustomerId");` why we use IO::intValue(); and other function similar to this.I am too confused about this. |
The End.