Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,043 members, 7,807,132 topics. Date: Wednesday, 24 April 2024 at 10:05 AM

Niyimarc's Posts

Nairaland Forum / Niyimarc's Profile / Niyimarc's Posts

(1) (of 1 pages)

Webmasters / Data Analyst And Web Developer by niyimarc(m): 8:01pm On Oct 04, 2021
I am a professional Data Analyst and Web Developer, I am available for any job related to web design and data analysis. You can hire me through the below link https://drey.tech/
Webmasters / BTC Doubler Php Script by niyimarc(m): 1:39pm On Apr 11, 2020
If you need a website that allow people to invest in BTC and get double of the amount invested back after some days, then you are in the right place,
this BTC Doubler script will allow users to;

Create new account with their BTC wallet address
Login to the site
Invest in BTC
Cash out in BTC

With this BTC doubler script,

the admin can receive investment directly into his or her wallet
admin can assign unlimited agent to reply to chat on the site

This script is written with PHP and SQL.

For more details contact Drey on 09032282484

You can also chech the demo [url]btc.drey.org.ng[/url]

Webmasters / How To Install Banking Script On A Localhost Server by niyimarc(m): 12:38am On Oct 30, 2019
In this post, I'll show you how to install banking script on localhost, if you don't have the banking script you can [url]click here to get it[/url]
Webmasters / Online Banking App Source Code Script Built With PHP by niyimarc(m): 4:25am On Sep 20, 2019
This banking app is built with BOOTSTRAP, PHP and MYSQL, This project contains the essential features to manage a bank. You can use this project as a foundation for your project.

Only the admin can add new customer and staff;
Admin can edit both the customer details and staff details;
Admin can delete bothe the customer details and staff details;
Customer can send money to another customer;
Customer must add a beneficiary before the customer will be able to send money;
Staff will have to verify a beneficiary before the customer can send money to the beneficiary;
Customers can check their account statements within a date range;
Customer can check last 10 transactions made with their account;
All three of them(customer, staff & admin) can change their password;
Passwords are stored as encrypted hashes with an additional random salt for added security;


USE THE LOGIN DETAILS BELOW TO SEE HOW THE SCRIPT WORK


ADMIN LOGIN DETAILS
http://frimart.org.ng/bank/admin/
username: admin
password: admin

CUSTOMER LOGIN DETAILS
http://frimart.org.ng/bank/login.php
username: sarah@gmail.com
password: password

username: von@gmail.com
password: password

STAFF LOGIN DETAILS
http://frimart.org.ng/bank/staff
username: joseph@gmail.com
password: password



You can call or Whatsapp Drey on 09032282484 for more details about the script

1 Share

Webmasters / How To Create Login And Register Form With Html Www.niyimarc.org.ng by niyimarc(m): 3:25am On Sep 12, 2018
If you want to learn how to design websites, HTML is what is good to start with because its the basic language used in designing websites, one of the thing you should learn in HTML is how to create a form, which am going to show you how it works. If this is your first time of writing HTML document, you can call me on 09032282484 I'll put you through for free. To create a login form we make use of "input" tag,

<input type="text" name="" placeholder="" required />

Step 1. We define the type: The type can in form of text, number, password, button, checkbox, date, radio, email, file etc.

If it's in form of number, that is if you want to ask for the user phone number the type="number" .

When it's in form of letter, that is if you want to ask for the user name or any information that is in a text format type="text"
If its email you want to receive from user type="email"

If it's password you want the user to input, it has to be hidden and that is why the "password" type have to be used. eg; type="password"

There are more "type" value that we cannot mention all


Step 2. We define the name: You can give your form any name. Note that the name you give your form will be used while creating your data base and linking it with the PHP script.


Step 3. We define the placeholder though the placeholder is not compulsory: This is the text that show as the default value in the field e.g placeholder="Enter a valid email address"
Step 4. We can also make the form compulsory by adding "required": If you don't want the user to skip any field, then you add the required..


Take a look at the typical example of what I have explained.


<!DOCTYPE html>
<html>
<head>
<title>Register</title>
</head>
<body>

<form>
<input type="text" name="firstname" placeholder="Enter your firstname" required /><br /><br />
<input type="text" name="lastname" placeholder="Enter your lastname" required /><br /><br />
<input type="text" name="username" placeholder="Choose your username" required /><br /><br />
<input type="date" name="dob" placeholder="Date of birth" required/><br /><br />
<input type="email" name="emailaddress" placeholder="Email address" required /><br /><br />
<input type="password" name="password" placeholder="Enter a new password" required/><br /><br />
<textarea name="address" placeholder="Home address" ></textarea><br /><br />
<input type="submit" name="submit" value="Sign up" /><br /><br />
</form>

</body>
</html>



You are free to copy and paste this code to test and see the result. You can also visit www.niyimarc.org.ng for more updates

Webmasters / How To Create Calculator Using Php And Html Script Www.niyimarc.org.ng by niyimarc(m): 2:45am On Sep 12, 2018
I know building a calculator is something fun to play with as a beginner learning PHP, it’s something good to work with so as to develop ourselves on PHP. Am actually sharing this with my friends who are lovers of PHP. Follow the below steps to design the calculator;

You are free to copy the code below to use on your work.

STEP 1: Create a new PHP file, with “.php” extension Eg; “index.php”. Set up your HTML document on the new .php file you created.
[center] <!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>[/center]

STEP 2: Create a “<form>” tag between your “<body>” tag, then use the “<input>” twice tag to determine the first and second field to input your number on the browser.

[center]<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

<form>
<input type="number" name="num1" placeholder="0"><br><br>
<input type="number" name="num2" placeholder="0"><br><br>
</form>

</body>
</html>[/center]

You can save the file and refresh the browser to see the result you have so far.

Step 3; Use the “<select>” tag immediately after the end of the input tag below to list the operator options. We are using this tag if you want to add, subtract, multiply or divide.


[center]<select name="operator">
<option>None</option>
<option>+</option>
<option>-</option>
<option>*</option>
<option>/</option>
</select><br><br>[/center]

Note that we are to define the name of the “<select>” tag. In our case, the name for the “<select>” tag is “operator”

Step 4; The next thing we need to do is to include the button to calculate our work.

[center]<button name="submit" type="submit" value="submit">Calculate</button>
<br>[/center]

Note that when we click on the submit button on the browser, the information input in the text field will be added to the url of the page.

Step 5; We are going to use the “$_GET” to get the information in the url by using PHP. Put the below code immediately after the “<form>’ tag.


[center]<?php
if (isset($_GET['submit'])) {
$result1 = $_GET['num1'];
$result2 = $_GET['num2'];
$operator = $_GET['operator'];

}

?>[/center]


Step 6; Lets determine how our operator will will work. we will be using “switch” you can also use the “if” statement to do this if you like.

[center]<?php
if (isset($_GET['submit'])) {
$result1 = $_GET['num1'];
$result2 = $_GET['num2'];
$operator = $_GET['operator'];

switch ($operator) {
case 'None':
echo "you must select a method";
break;
​[/center]

To get the full code in one file, visit my website: https://niyimarc.org.ng/2018/09/06/build-a-simple-calculator-with-php/

Business To Business / Get free btc online visit https://drey.org.ng/?p=95 learn more by niyimarc(m): 11:17am On Mar 13, 2018
Visit this link to learn about it https://drey.org.ng/?p=95
Business / Re: Is Ice Block Production And Selling Business Really Profitable by niyimarc(m): 11:11am On Mar 13, 2018
niyimarc:
It is true that the business is very lucrative, the cost of producing it is very low, the profit is about 1000%. But without a good location and strong ice block making machine, you won't find this business lucrative at all. [color=#006600][/color]
What do I mean by a good location? The place where you want to sell your ice block has to be somewhere, where there is large population and where there is no stable power supply, you can have your machine install where is stable power supply but u should sell your ice block where there in no stable power supply. Ice block is more needed where is no light...
Concerning the ice block machine: I can only recommend HIGHERCOOL ice block making machine. They have different sizes like the one that produces 50,70,100&120... For more information about this machine call Dare on 09032282484
https://www.nairaland.com/3745057/best-ice-block-making-machine
Business / Re: Is Ice Block Production And Selling Business Really Profitable by niyimarc(m): 11:07am On Mar 13, 2018
It is true that the business is very lucrative, the cost of producing it is very low, the profit is about 1000%. But without a good location and strong ice block making machine, you won't find this business lucrative at all. [color=#006600][/color]
What do I mean by a good location? The place where you want to sell your ice block has to be somewhere, where there is large population and where there is no stable power supply, you can have your machine install where is stable power supply but u should sell your ice block where there in no stable power supply. Ice block is more needed where is no light...
Concerning the ice block machine: I can only recommend HIGHERCOOL ice block making machine. They have different sizes like the one that produces 50,70,100&120... For more information about this machine call Dare on 09032282484
https://www.nairaland.com/3745057/best-ice-block-making-machine

1 Share

Business To Business / Re: Best Ice Block Making Machine In Nigeria by niyimarc(m): 10:38am On Mar 13, 2018
niyimarc:
Ice block business is one of the most profitable business anyone can go into, I can boldly tell you that this business is very lucrative. As at the time this post was written, Ice block is sold at N100 to N200 per 1 depending on demand and supply in your area. and it is proven that “the cost of producing one Ice block is less than N10 including the cost of electricity” imagine you making 1000% to 2000% on one Ice block, is that not lucrative?. sad

I recommend Highercool Ice Block Machine If you are looking for the best Ice Block Machine in Nigeria, with this Ice Block Machine you can produce up to 50-120 Ice Blocks in 12-15hours depending on the size of machine that you purchase. This Ice block making machine company has been tested and trusted by lot of business men and women in Nigeria. continue reading here http://niyimarc.com.ng/2017/03/21/buy-best-ice-block-machine-in-nigeria-from-highercool/

for more details about how to get this machine, call Dare on 09032282484
Business To Business / Re: Best Ice Block Making Machine In Nigeria by niyimarc(m): 8:35pm On Mar 01, 2018
we are in lagos. u can contact me directly on 09032282484
Business To Business / Re: How To Start Ice Block Business In Nigeria by niyimarc(m): 6:09pm On Oct 21, 2017
we are in Lagos, you can contact us on 09032282484
Business To Business / Best Ice Block Making Machine Company In Africa by niyimarc(m): 8:07pm On Oct 08, 2017
Are you looking for the best machine that produces solid ice block in few hours for your ice block business, then this is the right post for you. This Ice block making machine company am about to introduce to you is the best in Africa and their office is in Lagos Nigeria. HIGHERCOOL.

With this Ice Block Machine you can produce up to 50-100 Ice Blocks in 15hours depending on the size of machine that you purchase. This Ice block making machine company has been tested and trusted by lot of business men and women in Nigeria. [url]You can like their facebook page https://www.facebook.com/highercooliceblock/[/url]

There are three different sizes for Highercool Ice block making machine, all these machine produce ice block the same time (less than 15hours). The sizes are as follows;
There is a machine that produce 50,
There is a machine that produce 70,
There is a machine that produce 100,
There is a machine that produce 120.

for more details about how to get this machine and the prices, call Dare on 09032282484
https://niyimarc.org.ng/2018/06/09/ice-block-making-machine/

1 Share

Business To Business / How To Start Ice Block Business In Nigeria by niyimarc(m): 7:33pm On Apr 16, 2017
With the assistance of our deft team of professionals, we are able to introduce a broad array of Electric Ice Block Making Machine in Nigeria.... Ice block business is only easy when you have the right Ice block making machine. Highercool Iceblock making machine is rated #1 in Nigeria
Read more on how to get the machine and the price by clicking on the link below

https://niyimarc.org.ng/2018/06/09/ice-block-making-machine/

contact Dare on 09032282484 on how to get machine

https://niyimarc.org.ng/2018/06/09/ice-block-making-machine/

Business To Business / Best Ice Block Making Machine In Nigeria by niyimarc(m): 4:59pm On Apr 16, 2017
Ice block business is one of the most profitable business anyone can go into, I can boldly tell you that this business is very lucrative. As at the time this post was written, Ice block is sold at N100 to N200 per 1 depending on demand and supply in your area. and it is proven that “the cost of producing one Ice block is less than N10 including the cost of electricity” imagine you making 1000% to 2000% on one Ice block, is that not lucrative?. sad

I recommend Highercool Ice Block Machine If you are looking for the best Ice Block Machine in Nigeria, with this Ice Block Machine you can produce up to 50-120 Ice Blocks in 12-15hours depending on the size of machine that you purchase. This Ice block making machine company has been tested and trusted by lot of business men and women in Nigeria. continue reading here https://niyimarc.org.ng/2018/06/09/ice-block-making-machine/

for more details about how to get this machine, call Dare on 09032282484

(1) (of 1 pages)

(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. 52
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.