Skip to main content

Posts

Showing posts from November, 2023

Brain App Project Plan

 1st Phase of App development 1. Setup the Project 2. Setup the directory structure of the project. Make sure screens, components, api-services, styles, common-styles must be separate and well organized. assets folder structure assets/images // all images of the application assets/fonts // fonts using in the applicaton src folder structure Reuseable components src/components // reusables components need to be use in any component Authentication components src/screens/auth/login.js src/screens/auth/register.js src/screens/auth/reset_password.js src/screens/auth/verify_password.js src/screens/components/ // auth component specific components Dashboard components src/screens/dashboard/dashboard.js // show customer balance components src/screens/dashboard/components/customer_balance.js Package plans components Package categories src/screens/package_catgories/categories.js Package plans src/screens/package_plans/plans.js src/screens/package_plans/components/plan_details.js Subscriptions...

Php preparation

<!DOCTYPE html> <html> <body> <?php $x = 'adnan'; $$x = 'zaib'; echo $$x; echo "</br>"; echo $adnan; echo "</br>"; echo "what is is the use of &"; echo "</br>"; $a = '1'; $b = &$a; echo $b; echo "</br>"; $b = "2$b"; echo $a.','.$b; //21,21 q k b point kr rha ha as a reeferece variable to $a mtlb: $b jo ha wo $a variable ki memory ko point kr rha hai echo "</br>"; $x = 5; echo $x+++$x++; //11 echo "</br>"; echo "<br />"; echo $x---$x--; // 1 echo "<br />"; $array[10] = 'adnan'; print_r($array); print($array[10]); echo '</br> length: '. count($array); echo '</br>'; $y = "man"; $$y = 100; echo $y; echo $$y; echo $man; echo '</br>'; $text = 'adnan'; echo strlen($text); echo '</br>'; $text[10] = 'zaib...