Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
25% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
6
Posts with Downvotes
5
Downvoting Members
6
~15.3K People Reached
About Me

I am software Engineer At Advance Corporate Solutions.I love programming.

Interests
Programming,Footbal,Cricket,Badminton
PC Specs
core i5
Favorite Forums

32 Posted Topics

Member Avatar for SirMahlon

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

Member Avatar for Sikander Nasar
0
619
Member Avatar for diafol

Sublime Text is best.I have use dreamvewer as well as netbeans but I have enjoy using sublime.

Member Avatar for rsleventhal
0
648
Member Avatar for subbu_1

Check the name of the action file.when you post the data it do not find the file name that you given.

Member Avatar for subbu_1
0
528
Member Avatar for code05

<?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() - …

Member Avatar for Sikander Nasar
0
187
Member Avatar for Sikander Nasar

# 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.

Member Avatar for mangel.murti
0
170
Member Avatar for Sikander Nasar

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!

Member Avatar for cereal
0
125
Member Avatar for matrixdevuk
Member Avatar for davy_yg

You can simply do in this way. `<a onClick="return confirm('Are you sure you want to delete this')" href="#">Delete</a>`

Member Avatar for mattster
0
2K
Member Avatar for Jannezs

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 …

Member Avatar for toxicandy
0
1K
Member Avatar for bolfescu

<a class="field_delete" onClick="return confirm('Are you sure you want to delete')" href="#">Delete</a>

Member Avatar for mattster
0
802
Member Avatar for vishal sata

what is the problem that you are facing.please mention your problem completely. thanks

Member Avatar for diafol
-1
262
Member Avatar for Sikander Nasar

## 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.

Member Avatar for pritaeas
0
109
Member Avatar for Sikander Nasar

I want to fix unsaving iframe in post, page n content of admin -panel.need urgent help.

Member Avatar for pritaeas
0
101
Member Avatar for Sikander Nasar

I need Code for Tracking Aramex API.I have found tutorial on their website but i am facing problem to do it. Thanks

Member Avatar for joshl_1995
0
87
Member Avatar for Sikander Nasar
Member Avatar for veedeoo
0
448
Member Avatar for Sikander Nasar

I am facing the problem that the scroll is not moving to the top if any validation error occur.

Member Avatar for DJBirdi
0
132
Member Avatar for Sikander Nasar

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.

Member Avatar for nadiam
0
124
Member Avatar for ravi142

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>

Member Avatar for ravi142
0
3K
Member Avatar for Sikander Nasar
Member Avatar for Dani
0
195
Member Avatar for jKidz

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')

Member Avatar for jKidz
0
256
Member Avatar for vizz

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]

Member Avatar for Sikander Nasar
0
305
Member Avatar for gianluzzz

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', …

Member Avatar for veedeoo
0
261
Member Avatar for Sikander Nasar

/* -------------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 …

Member Avatar for Sikander Nasar
0
116
Member Avatar for [NOPE]FOREVER

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.

Member Avatar for DJBirdi
4
160
Member Avatar for Sikander Nasar

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 …

Member Avatar for itisnot_me
0
278
Member Avatar for Sikander Nasar

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?

Member Avatar for almostbob
0
284
Member Avatar for [NOPE]FOREVER

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 …

Member Avatar for Sikander Nasar
0
935
Member Avatar for Sikander Nasar
Member Avatar for Sikander Nasar
0
241
Member Avatar for Sikander Nasar
Member Avatar for davy_yg

//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.

Member Avatar for Sikander Nasar
0
355
Member Avatar for patk570
Member Avatar for patk570
0
318
Member Avatar for Sikander Nasar

`$iCustomerId = IO::intValue("CustomerId");` why we use IO::intValue(); and other function similar to this.I am too confused about this.

Member Avatar for Sikander Nasar
0
185

The End.