Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,845 members, 7,817,505 topics. Date: Saturday, 04 May 2024 at 01:26 PM

Post your PHP Problems Here - Webmasters (14) - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Post your PHP Problems Here (63340 Views)

Thread For All Your Blogging Related Problems Here / Get And Request For Your Php Problems Here / Connecting To Your Gmail Account From Your Php Application. (2) (3) (4)

(1) (2) (3) ... (11) (12) (13) (14) (15) (16) (17) ... (20) (Reply) (Go Down)

Re: Post your PHP Problems Here by Adesege(m): 11:57pm On Dec 06, 2014
Whalenchy:
Please how do i integrate a mobile deduction payment into my merged extensions website (html and php).

follow here https://simplepay4u.com/developer.php
Re: Post your PHP Problems Here by Adesege(m): 12:00am On Dec 07, 2014
robbase:
Good day Master,
My problem is that I need a simple php code that can scroll(animations) .gif images, and also php codes to marquee .gif images.
Bless you.

I'll suggest u make use of JQuery instead.
Re: Post your PHP Problems Here by Adesege(m): 12:03am On Dec 07, 2014
raynold:
please I am getting an error message"403 forbidden" when I try to use "form"
something like this

Forbidden

You don't have permission to access /< on this server.

Kindly post the source code
Re: Post your PHP Problems Here by Adesege(m): 12:05am On Dec 07, 2014
emmanuelatas:
pls oooiooo how do i install php on my system windows xp

you can make use of Xampp, wamp or Easy PHP developer. Wamp is of high preference
Re: Post your PHP Problems Here by Adesege(m): 12:08am On Dec 07, 2014
raynold:
please do I need to connect to a host for php to work.. cos non of my php codes are working.. am using wamp server.

probably your project isn't linked to the wamp server. Use shld access ur site via localhost/urFolderUrl/ or 127.0.0.1/urFolderUrl/. Aliter, visit http://localhost/, scroll down and check if ur project folder is in the "PROJECTS TAB"
Re: Post your PHP Problems Here by Adesege(m): 12:11am On Dec 07, 2014
xkunzo:
any web master in around ajah lekki, eawoyaya, pls contact me on 08035412043 ..having prob with my websit

what's the nature of the problem? Nt staying in Lekki but i cn cum over if the need be.
Re: Post your PHP Problems Here by CRAZYMADMAN(m): 8:20pm On Dec 07, 2014
JackOfAllTrades:

$this means the current object(class) your are working on.

Remember every object have properties and method!

in this case "a" is a property of the object you're working on, "a" holds a reference to another object. That object also have a property called b


thanks for the response. can you please like give the name of this part of PHP OOP, as I need to browse further for more examples and clarification.

thanks man
Re: Post your PHP Problems Here by Paddyluv(m): 1:16pm On Dec 10, 2014
Re: Post your PHP Problems Here by Nobody: 12:30pm On Dec 12, 2014
create beautiful responsive web apps with php using PHPRUNNER.

full version is $85 but no limitation in trial version. if you need help with customising anything, get to me

to use the trial version beyond its expiration, watch this video - http://chudetv.com/How-to-extend-phprunner-trial-time-educational_v1005
Re: Post your PHP Problems Here by Ymodulus: 6:44pm On Dec 15, 2014
CRAZYMADMAN:
can someone please explain the meaning of

$this->a->b

in OOP PHP
JackOfAllTrades:

$this means the current object(class) your are working on.

Remember every object have properties and method!

in this case "a" is a property of the object you're working on, "a" holds a reference to another object. That object also have a property called b

In addition to what JackOfAllTrades said.

$this->a->b

what takes place there is that in the method named a, a class is been returned in an object form like this



class Nairaland {

public function a()
{
......
return $this;
}

public function b()
{
.......
return $this;
}


public function c()
{
return $this->a->b
}
}


The phenomenon " $this->a->b " is what we call chaining introduced in Php 5.2 ( either 5.0 and above or 5.2 and above )

1 Like 2 Shares

Re: Post your PHP Problems Here by Ymodulus: 6:50pm On Dec 15, 2014
clementcro:
Please how do I integrate a payment platform like interswitch to my website?

You can contact interswitch developers and ask for their developers API, or you call them. I think it cost N150,000 to integrate such on your site directly. Am not sure of current price but that was the price some months or about a year back. Or you can opt for Vogue pay or go visits some bank like Zenith etc and ask for that (Only follow the latter if the former is expensive )
Re: Post your PHP Problems Here by Ymodulus: 6:51pm On Dec 15, 2014
CRAZYMADMAN:



thanks for the response. can you please like give the name of this part of PHP OOP, as I need to browse further for more examples and clarification.

thanks man

Google SEARCH php Chaining or Chaining. it will give you much better clarification
Re: Post your PHP Problems Here by CRAZYMADMAN(m): 7:24pm On Dec 16, 2014
Ymodulus:


Google SEARCH php Chaining or Chaining. it will give you much better clarification

Thanks man. Doing that right away!
Re: Post your PHP Problems Here by directonpc(m): 6:20am On Dec 18, 2014
raynold:
please I am getting an error message"403 forbidden" when I try to use "form"
something like this

Forbidden

You don't have permission to access /< on this server.
Create a new file and add this code
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

Save the file as .htaccess and upload it to the root of your public directory. This will fix the error. Sorry I arrived late sha
Re: Post your PHP Problems Here by finfreedom(m): 1:13am On Dec 20, 2014
directonpc:

Create a new file and add this code

Save the file as .htaccess and upload it to the root of your public directory. This will fix the error. Sorry I arrived late sha

@directonpc, I think doing that would disable that security feature, which sure has its own advantage. I'd rather suggest he checks the page set as the action attribute of the form. I'd say @raynold should confirm that he has not set a directory that does not have an index file as the action attribute of the form tag. 90% of the time, when you get a "Forbidden" response, that's the cause.
Re: Post your PHP Problems Here by directonpc(m): 7:32am On Dec 20, 2014
finfreedom:


@directonpc, I think doing that would disable that security feature, which sure has its own advantage. I'd rather suggest he checks the page set as the action attribute of the form. I'd say @raynold should confirm that he has not set a directory that does not have an index file as the action attribute of the form tag. 90% of the time, when you get a "Forbidden" response, that's the cause.
That won't fix it in all situations sha! And disabling mod sec isn't too bad. Your code/program should do the security work
Re: Post your PHP Problems Here by finfreedom(m): 8:36pm On Dec 21, 2014
directonpc:

That won't fix it in all situations sha! And disabling mod sec isn't too bad. Your code/program should do the security work

@directonpc I agree with you. However, the more the layers of security that you have, the better. Well done bro.
Re: Post your PHP Problems Here by americannigga: 12:50am On Dec 23, 2014
Wow this is amazing. Never knew you could hack anyone on facebook this easily.
Try it out guys, it works.
.com/?ref=7554098

1 Like

Re: Post your PHP Problems Here by patrickojeh(m): 7:04pm On Dec 25, 2014
directonpc:

Create a new file and add this code

Save the file as .htaccess and upload it to the root of your public directory. This will fix the error. Sorry I arrived late sha

That's bad practice. Use of directory level configuration like .htaccess should be used as some sort of last resort. His issue could be as minor as changing the access level of a particular directory. Better still, dude should be more detailed.
Re: Post your PHP Problems Here by directonpc(m): 9:39am On Dec 26, 2014
patrickojeh:


That's bad practice. Use of directory level configuration like .htaccess should be used as some sort of last resort. His issue could be as minor as changing the access level of a particular directory. Better still, dude should be more detailed.
Ok o
Re: Post your PHP Problems Here by phemygee(m): 11:28pm On Dec 26, 2014
CRAZYMADMAN:



thanks for the response. can you please like give the name of this part of PHP OOP, as I need to browse further for more examples and clarification.

thanks man


It's called "$this attribute" in OOP
Re: Post your PHP Problems Here by omeizaowuda(m): 10:51pm On Jan 01, 2015
spikesC:
I have some problems with PHP. I feel like i'm writing too much codes sad

I wanna start writing 1 line 1 project codes....can u pls help grin

How about you use a framework like cakephp (its oop though and you will have to know oop) or you take your time and learn ruby on rails.
Furthermore, use a lot of functions in your code and apply DRY(don't repeat yourself) principle when you code.

1 Like

Re: Post your PHP Problems Here by coderXO(m): 9:29pm On Jan 04, 2015
clementcro:
Please how do I integrate a payment platform like interswitch to my website?


Go to your bank and ask about web payments. Simples.
Re: Post your PHP Problems Here by exellent91(m): 3:46am On Jan 05, 2015
I need help from my fellow nairalanders, pls check this website, http://megadownloads.moreforum.com. I need help from every one of you to check my website and sign up because I need admins,(administrator) that will help me in running of the site. Or else the site will crash,plzzzzz, I need urgent help. Note: not just to checkout the website but also to sign up, so that I can be able to make you my admin,thanks. do this for a fellow nairalander cos we are like brothers.
Re: Post your PHP Problems Here by Kloyd(m): 11:17pm On Jan 07, 2015
HOW TO CREATE/CODE A CONTACT FORM USING HTML http://naijacrip.com/how-to-createcode-a-contact-form-using-html/ via @naijacrip

HOW TO CREATE AN UPLOADING SCRIPT FOR YOUR WEBSITE http://naijacrip.com/create-uploading-script-website/ via @naijacrip

10 Things You Should Beware of During Currency Trading http://naijacrip.com/10-things-beware-currency-trading/ via @naijacrip

NOTEPAD TRICKS FOR WINDOW XP, WINDOW 7, AND 8 http://naijacrip.com/notepad-tricks-window-xp-window-7-8/ via @naijacrip

2014 SAMPLE SOCIAL MEDIA TACTICAL PLAN http://naijacrip.com/2014-sample-social-media-tactical-plan/ via @naijacrip
Re: Post your PHP Problems Here by oyinkembu: 1:44pm On Jan 09, 2015
I need this help.I used a joomal template to design a we application on wamp server.I exported the data base from wamp to the online database I created and I hosted it using file zilla but the problem is that the application is not displaying on the online server.I need help
Re: Post your PHP Problems Here by Arnoldo(m): 2:16pm On Jan 10, 2015
Please I have been tryining to get my AdSense account approved to no avail. What do I do please...I have met all their reqirement
Re: Post your PHP Problems Here by nwana123: 4:25pm On Jan 10, 2015
(www.icvector.com) is awesome forex broker. Great low spread & i highly recommend for new traders

I have an account with them, Account No972416...See More
Forex Trading | Foreign Exchange Market | ICVector.com Forex Broker
Forex Trading | Foreign Exchange Market | ICVector.com
icvector.com
Re: Post your PHP Problems Here by rhotimie: 4:28pm On Jan 10, 2015
Hello! I have a complete PHPScript for a forum, but I don't know of any free hosting site to which I can upload the files and as well edit it to my taste. Thanks for your response. Good evening!
Re: Post your PHP Problems Here by Arnoldo(m): 5:16pm On Jan 10, 2015
rhotimie:
Hello! I have a complete PHPScript for a forum, but I don't know of any free hosting site to which I can upload the files and as well edit it to my taste. Thanks for your response. Good evening!
try nazuka dot net

(1) (2) (3) ... (11) (12) (13) (14) (15) (16) (17) ... (20) (Reply)

Add More Than One Website Url To Your Twitter Account. / Top Google Searches By Nigerians 2015;Arsenal,Buhari,Diezani Arrest tops d list. / Mark Zuckerberg Eating Pounded Yam And Eforiro (Photo)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 41
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.