₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,324,995 members, 8,419,855 topics. Date: Thursday, 04 June 2026 at 03:09 AM

Toggle theme

FRInteractives's Posts

Nairaland ForumFRInteractives's ProfileFRInteractives's Posts

1 2 3 4 5 6 7 8 9 10 11 (of 15 pages)

BusinessRe: OMG 1ghana Cedis Is Now 51.69 Naira by FRInteractives(op): 10:10pm On May 01, 2015
BusinessOMG 1ghana Cedis Is Now 51.69 Naira by FRInteractives(op): 10:09pm On May 01, 2015
No Ghana Cedi
(GHS) Nigeria
Naira (NGN) Notation 1 GH₵ 1 GHS ₦ 51.69 NGN 1 Ghana Cedi
= 51.69 Nigeria
Naira 2 GH₵ 5 GHS ₦ 258.44 NGN 5 Ghana Cedi
= 258.44
Nigeria Naira 3 GH₵ 10 GHS ₦ 516.88 NGN 10 Ghana Cedi
= 516.88
Nigeria Naira 4 GH₵ 20 GHS ₦ 1,034 NGN 20 Ghana Cedi
= 1,034 Nigeria
Naira 5 GH₵ 50 GHS ₦ 2,584 NGN 50 Ghana Cedi
= 2,584 Nigeria
Naira 6 GH₵ 100
GHS ₦ 5,169 NGN 100 Ghana
Cedi = 5,169
Nigeria Naira 7 GH₵ 250
GHS ₦ 12,922 NGN 250 Ghana
Cedi = 12,922
Nigeria Naira 8 GH₵ 500
GHS ₦ 25,844 NGN 500 Ghana
Cedi = 25,844
Nigeria Naira 9 GH₵ 1,000
GHS ₦ 51,688 NGN 1000 Ghana
Cedi = 51,688
Nigeria Naira 10 GH₵ 5,000
GHS ₦ 258,442
NGN 5000 Ghana
Cedi = 258,442
Nigeria Naira 11 GH₵ 10,000
GHS ₦ 516,883
NGN 10000 Ghana
Cedi = 516,883
Nigeria Naira 12 GH₵ 50,000
GHS ₦ 2,584,416
NGN 50000 Ghana
Cedi =
2,584,416
Nigeria Naira 13 GH₵ 100,000
GHS ₦ 5,168,831
NGN 100000 Ghana
Cedi =
5,168,831
Nigeria Naira 14 GH₵ 500,000
GHS ₦ 25,844,156
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 9:42am On May 01, 2015
Now if you want to connect your php script to a
database, for best practises, its best to have a
database connection file eg connect.php in your
includes folder in your web root directory.
A simple database connection file will have the
following lines of code:
<?php
//define database constants
define("DB_HOST", "localhost" ; //this is your
database host
define("DB_NAME", "my-db" ; // your database you
want to connect to
define("DB_USER", "root" ; //database user
define("DB_PASS", "my-password" ; // your
database password
// now the connection
$con = mysql_connect(DB_HOST, DB_USER,
DB_PASS); //$con is the connection variable
$db = mysql_select_db(DB_NAME, $con) // the
database you wish to use
//check if connection is successful
if(!$con) {
die("Error establishing connection" .mysql_error());
}
if(!$db) {
die("Database Selection failed".mysql_error());
}
mysql_close($con);
?>
Now this is a depreciated style and will be removed
in future here's another way using mysqli

<?php
//define database constants
define("DB_HOST", "localhost" ; //this is your
database host
define("DB_NAME", "my-db" ; // your database you
want to connect to
define("DB_USER", "root" ; //database user
define("DB_PASS", "my-password" ; // your
database password
//connection
$conn = new mysqli(DB_HOST, DB_USER,
DB_PASS);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>
evolg:
Pls, i'm having an issue connecting my php codes wit my backend(Mysql)...i'm making use of Apache actually...wud appreciate if u can jst hint me on aw to go abt dt.
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 9:39am On May 01, 2015
Connecting to a back-end database like Mysql is easy.

Prerequisite:
Local server eg: Xampp, Wamp, Lamp, Mamp,
These local servers includes Apache, Mysql, php and perl(Xampp)

If you are on a windows machine I recommend Xampp. And you can connect to your database from dreamweaver from sites.

Packaged/shipped with Xampp is a web application that execute mysql statements called Phpmyadmin.

For a better understanding in installing Xampp read this post I created
https://www.nairaland.com/2017359/how-install-wordpress-local-host

Now if you want to connect your php script to a database, for best practises, its best to have a database connection file eg connect.php in your includes folder in your web root directory.
A simple database connection file will have the following lines of code:

<?php
//define database constants
define("DB_HOST", "localhost"wink; //this is your database host
define("DB_NAME", "my-db"wink; // your database you want to connect to
define("DB_USER", "root"wink; //database user
define("DB_PASS", "my-password"wink; // your database password

// now the connection

$con = mysql_connect(DB_HOST, DB_USER, DB_PASS); //$con is the connection variable
$db = mysql_select_db(DB_NAME, $con) // the database you wish to use
//check if connection is successful
if(!$con) {
die("Error establishing connection" .mysql_error());
}
if(!$db) {
die("Database Selection failed".mysql_error());
}
mysql_close($con);

?>
Now this is a depreciated style and will be removed in future here's another way using mysqli

<?php
<?php
//define database constants
define("DB_HOST", "localhost"wink; //this is your database host
define("DB_NAME", "my-db"wink; // your database you want to connect to
define("DB_USER", "root"wink; //database user
define("DB_PASS", "my-password"wink; // your database password

//connection
$conn = new mysqli(DB_HOST, DB_USER,
DB_PASS);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

?>

And another style PDO
soleexx:
Bros I'm okay and doing perfect with..

HTML
CSS
JAVASCRIPT
PHP-design

My problm now is database...have been watchin tutorial video read ebooks...I can't steal get...help pls

Currently I work only with dreamwavers
ProgrammingRe: How Do I Connect To Mysql! by FRInteractives: 9:02am On May 01, 2015
Here's how to create a mysql database connection using PDO
<?php
$dsn = 'mysql:dbname=testdb;host=127. 0.0.1'; $user = 'dbuser'; $password = 'dbpass'; try { $dbh = new PDO ($dsn, $user, $password); } catch (PDOException $e) { echo 'Connection failed: ' . $e- >getMessage(); } ?>
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 8:37am On May 01, 2015
I've been reading through your answers, shit, and contributions. Keep on reading and I will post some more difficult tasks on PHP
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 3:07am On Apr 30, 2015
let me have a look at your codes
mustyhboy:
help! cant get dis html coding right, i wrote codes to create ad spaces on ma blog buh i can't place them horizontally (side by side). they ve been placed vertically (on each other). how do i do this please??
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 3:06am On Apr 30, 2015
please be clear
teeebest:
Please how do I remove the white text area background in WordPress? Thanks
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 3:05am On Apr 30, 2015
@bigv
Use scrolldelay="1000" to
control the speed and for
stopping try this

<ma r q u e e o nmo u s e o v e r = " t h i s . s e t A t t r i b u t e ( ' s c r o l l amo u n t ' , 0 , 0 ) ; " o nmo u s e o u t = " t h i s . s e t A t t r i b u t e ( ' s c r o l l amo u n t ' , 6 , 0 ) ; " > y o u r t e x t h e r e < / ma r q u e e>

o nMo u s eDown= " d o c ume n t . a l l . t e s t . s t a r t ( ) " OR o nMo u s eOu t = " d o c ume n t . a l l . t e s t . s t o p ( ) "

<ma r q u e e i d= " t e s t " b e h a v i o r = " s c r o l l " d i r e c t i o n= " u p " h e i g h t = " 2 0 0 " s c r o l l d e l a y= " 1 0 0 " s c r o l l amo u n t = " 2 " o nMo u s eOv e r = " d o c ume n t . a l l . t e s t . s t o p ( ) " o nMo u s eOu t = " d o c ume n t . a l l . t e s t . s t a r t ( ) " > T h i s i s my t e s t < / ma r q u e e>
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 3:01pm On Apr 29, 2015
You Nailed it Bro. Keep it up. I'll be posting some more difficult questions soon
[quote author=Craigston post=33219968][/quote]
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 12:33am On Apr 29, 2015
[quote author=Craigston post=33219601][/quote]good one bro
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 11:37pm On Apr 28, 2015
spikesC:
Question 1 is also wrong.



You cannot have the single quotes of an array index when the array is in a double quote. It is a syntax error.

Therefore,

"SELECT *
FROM table WHERE id = $_POST
[ id ]"


Pls post reasonable questions, this is really too basic
NOTED
good observation
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 11:08pm On Apr 28, 2015
give me the url to that site
ehbraheem:
am not really programming friendly. But an interactive web app like 1960 agent page
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 11:01pm On Apr 28, 2015
Question 5 (OOP)

Q: What is the difference between p u b l i c, p r o t e c t e d and p r i v a t e in a class definition?
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 10:58pm On Apr 28, 2015
well done jregz but you did'nt get question 4 correctly.
WebmastersRe: Post All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 10:50pm On Apr 28, 2015
what type of web app do you intend building and which web development language do you know?
ehbraheem:
pls can u help with tutorial on web app
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 10:31pm On Apr 28, 2015
Question 4

Q: Consider these lines of codes:
//first code
$myVar = "I am Something";

$myVar .= "So Special";

echo "Do you Know $myVar";

And
//second code
$myVar = "I am Something";

$myVar .= "So Special";

echo 'Do you Know $myVar';

Now if you run these two codes in a Browser what will be the output?
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 10:17pm On Apr 28, 2015
Question 3

Q: Given this code:

function doSomething( &$arg )
{
$return = $arg;
$arg += 1;
return $return;
}
$a = 3;
$b = doSomething( $a );
...what is the value of $a and $b after the
function call and why?
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 10:16pm On Apr 28, 2015
Question 2

Q: What is the preferred way to write this if
statement, and why?

if( 5 == $someVar ) or
if( $someVar == 5 )
WebmastersRe: Webmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 10:12pm On Apr 28, 2015
Question 1

Q: What is wrong with this query:
"SELECT *
FROM table WHERE id = $_POST
[ 'id' ]" ?
WebmastersWebmasters Enter Here If You Can Solve These PHP Questions... by FRInteractives(op): 10:10pm On Apr 28, 2015
Hello NL webmasters, I will be posting some Questions in php which I have the answers already and you will figure them out for yourselves. You can also post your own questions here for others to solve.
WebmastersPost All Your Web Development Issues Here (php, Sql, Html, Javascript, Css) by FRInteractives(op): 10:02pm On Apr 28, 2015
Hello NL Webmasters, if you have any issue in any Language listed above feel free to share it here and get solutions to it.
WebmastersRe: Ecommerce Website Needed by FRInteractives: 9:45pm On Apr 28, 2015
FR Interactives IT Solutions, is an Information Technology company based in Port Harcourt Nigeria.
We specialize in creating ICT solutions for individuals, SMEs, corporate bodies, government and non-governmental organizations.

Below are the Services we can render to your organization
Bulk SMS/ SMS Alert Application
Website Development
Web Portal Development
Mobile Application Development
SEO
IT training
Computer graphics
Database Design, Implementation and Management services
ICT Training and Consulting

Talk to us today: Call +2348072611343 for more info

Visit us @ No. 5 Babbe Street, D/Line Port Harcourt, Rivers State.
PropertiesRe: 3 Bedroom Flat For Rent, 2storey Building..@aguda Surulere by FRInteractives: 9:50am On Apr 25, 2015
We can build a Real Estate/Property
Website for your Business,
Are you into Real Estate? then this
opportunity is for you to own a
professional looking website for your
firm to reach out and meet more clients. Having a Website speaks more for
you online.
FR Interactives Web Development
Agency is offering you the
opportunity to have a web presence
today. We can build a property website that
will possess these features:
-Classified Ads
- Property Listing
- Ecommerce Functionality
-Social Accounts - Responsive Design (compatible for
all devices)
- Online Payment for Properties
- About Page
- Contact page
- User Dashboard Want more than this? We can handle
your need. Contact us today and get the best
Web development services. Talk to us today:
Call: 08072611343, 08059981540 Visit us: No. 5 Babbe Street, D/Line
Port Harcourt, Rivers, Nigeria Regards,
FR Interactives Inc.
PropertiesRe: Tastefully 2bedroom Flat To Let @ Agungi,osapa & Ilasan Lekki by FRInteractives: 9:48am On Apr 25, 2015
We can build a Real Estate/Property
Website for your Business,
Are you into Real Estate? then this
opportunity is for you to own a
professional looking website for your
firm to reach out and meet more clients. Having a Website speaks more for
you online.
FR Interactives Web Development
Agency is offering you the
opportunity to have a web presence
today. We can build a property website that
will possess these features:
-Classified Ads
- Property Listing
- Ecommerce Functionality
-Social Accounts - Responsive Design (compatible for
all devices)
- Online Payment for Properties
- About Page
- Contact page
- User Dashboard Want more than this? We can handle
your need. Contact us today and get the best
Web development services. Talk to us today:
Call: 08072611343, 08059981540 Visit us: No. 5 Babbe Street, D/Line
Port Harcourt, Rivers, Nigeria Regards,
FR Interactives Inc.
PropertiesProperty Agencies, Estate Surveyors, Etc Read by FRInteractives(op): 3:46am On Apr 22, 2015
We can build a Real Estate/Property Website for your Business,
Are you into Real Estate? then this opportunity is for you to own a professional looking website for your firm to reach out and meet more clients.

Having a Website speaks more for you online.
FR Interactives Web Development Agency is offering you the opportunity to have a web presence today.

We can build a property website that will possess these features:
-Classified Ads
- Property Listing
- Ecommerce Functionality
-Social Accounts
- Responsive Design (compatible for all devices)
- Online Payment for Properties
- About Page
- Contact page
- User Dashboard

Want more than this? We can handle your need.

Contact us today and get the best Web development services.

Talk to us today:
Call: 08072611343, 08059981540

Visit us: No. 5 Babbe Street, D/Line Port Harcourt, Rivers, Nigeria

Regards,
FR Interactives Inc.
WebmastersRe: Please Help!!! Help This Newbie About Php Site by FRInteractives: 2:48pm On Apr 16, 2015
Where are you based? if you are based in Port Harcourt, Rivers State, you can come and register for a compressive web development course
Cybershow:
Pls help i dnt av knowledge abt it o.. pls
WebmastersRe: Please Help!!! Help This Newbie About Php Site by FRInteractives: 1:45am On Apr 16, 2015
First thing is to have a basic knowledge about PHP which is a server-side scripting language. If you don't have knowledge about PHP I can help you.
Cybershow:
Please Webmasters In This Section Please Help Me.. I Want To Know How To Create A Php Site Please How Does It Goes....
ProgrammingRe: Object-oriented PHP by FRInteractives: 5:09pm On Apr 14, 2015
hello if you are based in port harcourt nigeria dline axis you can come pick up an interactive OOP PHP programming ebook at our port harcourt office @ No. 5 babbe street, dline port harcourt or call, whatsapp us on 2348072611343

regards
CareerRe: Do You Use Microsoft Dynamics CRM? Post Your Issues, Tips, Etc Here by FRInteractives(op): 5:04pm On Apr 14, 2015
About Microsoft Dynamics CRM

Dynamics CRM is a Customer Relationship Management software package developed by Microsoft. It focuses mainly on Sales, Marketing and Service (help desk) sectors.

Dynamics CRM is a server-client application which like MS SharePoint is primarily IIS-based web application which also supports extensive web services interfaces.

Client access Dynamics CRM either by using a Web Browser or by a thick client plug-in to Microsoft Outlook.
CareerDo You Use Microsoft Dynamics CRM? Post Your Issues, Tips, Etc Here by FRInteractives(op): 4:41pm On Apr 14, 2015
Good day NL, Microsoft Dynamics CRM is an interesting ERP module that deals with Customer Relations share your issues and tips and we will give you solutions for a better use of Microsoft Dynamics


FR Interactives will be posting on this thread about upcoming Microsoft Dynamics CRM boot camps and workshops hosted by FR Interactives in Port Harcourt Nigeria

1 2 3 4 5 6 7 8 9 10 11 (of 15 pages)