NewStats: 3,263,920 , 8,181,892 topics. Date: Sunday, 08 June 2025 at 06:57 PM 4w4h4g

6382y

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

Post your PHP Problems Here (66332 Views)

(4)

Go Down)

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
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.
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
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
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"
Adesege(m): 12:11am On Dec 07, 2014
xkunzo:
any web master in around ajah lekki, eawoyaya, pls 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.
CRAZYMAN(m): 8:20pm On Dec 07, 2014
JackOfAllTrades:

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

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
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
Ymodulus: 6:44pm On Dec 15, 2014
CRAZYMAN:
can someone please explain the meaning of

$this->a->b

in OOP PHP
JackOfAllTrades:

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

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

Ymodulus: 6:50pm On Dec 15, 2014
clementcro:
Please how do I integrate a payment platform like interswitch to my website?

You can 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 )
Ymodulus: 6:51pm On Dec 15, 2014
CRAZYMAN:



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
CRAZYMAN(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!
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 it to the root of your public directory. This will fix the error. Sorry I arrived late sha
finfreedom(m): 1:13am On Dec 20, 2014
directonpc:

Create a new file and add this code

Save the file as .htaccess and 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.
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
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.
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

patrickojeh(m): 7:04pm On Dec 25, 2014
directonpc:

Create a new file and add this code

Save the file as .htaccess and 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.
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
phemygee(m): 11:28pm On Dec 26, 2014
CRAZYMAN:



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

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.
exellent91(m): 3:46am On Jan 05, 2015
I need help from my fellow nairalanders, pls check this website, http://megas.moreforum.com. I need help from every one of you to check my website and sign up because I need s,() 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 ,thanks. do this for a fellow nairalander cos we are like brothers.
Kloyd(m): 11:17pm On Jan 07, 2015
HOW TO CREATE/CODE A FORM USING HTML http://naijacrip.com/how-to-createcode-a--form-using-html/ via @naijacrip

HOW TO CREATE AN ING SCRIPT FOR YOUR WEBSITE http://naijacrip.com/create-ing-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
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
Arnoldo(m): 2:16pm On Jan 10, 2015
Please I have been tryining to get my AdSense approved to no avail. What do I do please...I have met all their reqirement
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 with them, No972416...See More
Forex Trading | Foreign Exchange Market | ICVector.com Forex Broker
Forex Trading | Foreign Exchange Market | ICVector.com
icvector.com
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 the files and as well edit it to my taste. Thanks for your response. Good evening!
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 the files and as well edit it to my taste. Thanks for your response. Good evening!
try nazuka dot net

Reply)

Setting Up Wamp Server To Run On Local Area Network

(Go Up)

Sections: How To . 36
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or s on Nairaland.